http://bugs.winehq.org/show_bug.cgi?id=9494
Summary: Cannot access the CD-ROM
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://www.wizetech.com/amc/
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: misc(a)mokfam.com
Running Slackware 12.0 on a Dell Inspiron 9300 notebook with 2gigs of RAM.
When using this program to try and access the CD-ROM I get a dialog window that
pops up saying "Access violation at address 7E9D5DCD in module 'shell32.dll'.
Write of address 00000000." I get this message just trying to do a browse on
the CD-ROM as well.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9695
Summary: Anno1701 will crash after a few minutes gameplay
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emkay(a)gmx.de
Hi i got Anno1701 working with wine x.43 but since x.45 i get this error
message after a few minutes of gameplay and the wine window closes:
i got this line over and over till the applincation crashes
"err:d3d_surface:IWineD3DSurfaceImpl_LockRect The surface already has PBO
memory allocated!"
and in the end this:
err:ntdll:RtlpWaitForCriticalSection section 0xf34ba0 "?" wait timed out in
thread 0009, blocked by 000d, retrying (60 sec)
fixme:winmm:MMDRV_Exit Closing while ll-driver open
may be you can fix the bug or suggest some new registry setting to solve this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10095
Summary: buffer overflow in RtlGetFullPathName_U
Product: Wine
Version: 0.9.47.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mbuilov(a)gmail.com
Please review wine/dlls/ntdll/path.c, RtlGetFullPathName_U():
/******************************************************************
* RtlGetFullPathName_U (NTDLL.@)
*
* Returns the number of bytes written to buffer (not including the
* terminating NULL) if the function succeeds, or the required number of bytes
* (including the terminating NULL) if the buffer is too small.
*
* file_part will point to the filename part inside buffer (except if we use
* DOS device name, in which case file_in_buf is NULL)
*
*/
DWORD WINAPI RtlGetFullPathName_U(const WCHAR* name, ULONG size, WCHAR* buffer,
WCHAR** file_part)
{
....skipped......
reqsize = get_full_path_helper(name, buffer, size);
if (!reqsize) return 0;
if (reqsize > size)
{
LPWSTR tmp = RtlAllocateHeap(GetProcessHeap(), 0, reqsize);
reqsize = get_full_path_helper(name, tmp, reqsize);
if (reqsize > size) /* it may have worked the second time */
{
RtlFreeHeap(GetProcessHeap(), 0, tmp);
return reqsize + sizeof(WCHAR);
}
memcpy( buffer, tmp, reqsize + sizeof(WCHAR) );
RtlFreeHeap(GetProcessHeap(), 0, tmp);
}
last memcpy() will try to copy (reqsize + sizeof(WCHAR)) bytes into the buffer
of (size) bytes, but here (reqsize) may be equal to (size).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10068
Summary: string definition mistake in ntdll.dll
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: naclx(a)vip.sina.com
There is a string definition mistake in dlls/ntdll/reg.c.
In function RTL_GetKeyHandle, the string "control" is defined with
"Registry\\Machine System\\Current ControlSet\\Control". but there shouldn't be
a blank in "Current Controlset". The functions that call RTL_GetKeyHandle to
get this key will return with an error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10042
Summary: tools/widl/parser.y: 518.9: parse error, unexpected ":",
expecting ";" or "|"
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andre.holliday(a)gmail.com
I am running FreeBSD 6.2. uname -a returns:
FreeBSD base.holliday.fam 6.2-STABLE-200709 FreeBSD 6.2-STABLE-200709 #0: Tue
Sep 11 02:13:25 UTC 2007
root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP i386
After running configure, gmake depend, and gmake the following error occurs
[...]
gmake[1]: Entering directory `/usr/local/src/wine/wine-0.9.47/tools'
gmake[2]: Entering directory `/usr/local/src/wine/wine-0.9.47/tools/widl'
bison -p parser_ -o parser.tab.c -d parser.y
parser.y:514.2-518.8: type clash (`uuid' `str') on default action
parser.y:518.9: parse error, unexpected ":", expecting ";" or "|"
gmake[2]: *** [parser.tab.h] Error 1
gmake[2]: Leaving directory `/usr/local/src/wine/wine-0.9.47/tools/widl'
gmake[1]: *** [widl] Error 2
gmake[1]: Leaving directory `/usr/local/src/wine/wine-0.9.47/tools'
gmake: *** [tools] Error 2
Error was caused by a missing semicolon on line 517 of tools/widl/parser.y. I
was able to fix the error by inserting a semicolon on line 517. I was then able
to complete the build and install without further problems.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9693
Summary: Libronix Digital Library System - Failure to run
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew(a)godfrey.name
Created an attachment (id=8113)
--> (http://bugs.winehq.org/attachment.cgi?id=8113)
log
Installation fails so I took a windows installation and copied it across to
linux and added registry entires. With the result that the software fails to
run. Although the splash screen appeared for a moment.
Company: Logos
Product: Libronix Digital Library System (Libronix DLS)
http://appdb.winehq.org/appview.php?iVersionId=8802
Download from:
ftp://ftp.logos.com/pub/tech/zip/LibronixDLS-3.0d.zip
Note: Internet Explorer is a stated system requirement.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9750
Summary: ServiceMain driver L"501fbfk7" failed to load
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elwario91(a)gmail.com
This bug is a bug in winedevice:
err:winedevice:ServiceMain driver L"501fbfk7" failed to load
This error is (i think) related to punkbuster!
With the latest version()s punkbuster seems to begin to work but always fail
with this error, tested in warrock!
Maybe that punkbuster can't be loaded so it would be nice that it works...
It would let a lot of games work!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9371
Summary: Steam: unusually slow game installation downloads
Product: Wine
Version: 0.9.43.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Starting with a clean Wine 0.9.43, I installed Steam as per instructions in
AppDb. When trying to install Counter-strike Source, initially the download
speed is high, at around 500 KB/s, but then drops to 2.2 KB/s and even 4
bytes/s, native Linux apps do not suffer such slowdowns. The terminal output
time period is from start to app termination.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9713
Summary: American McGee's Alice -- 3D Game environment implodes
on its self
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: barryd.it(a)gmail.com
I own a copy of American McGee's Alice.
The issue I'm having is that the first scene of the game, the image is split up
into many peices, and if I recall properally, she's in a cave, talking to the
rabbit, along with the cat, I can often see Alice if I move the mouse around,
but it seems as though the image implodes, into dozens of slices of the 3d
graphics.
I'm not sure if I need to update openGL or support directx in some way with
wine.
itsf-laptop:/home/barryd/.wine# visualinfo | grep '^[a-zA-Z]'Warning, xpress200
detected.OpenGL vendor string: DRI R300 Project
OpenGL renderer string: Mesa DRI R300 20060815 x86/MMX+/3DNow!+/SSE2 NO-TCL
OpenGL version string: 1.3 Mesa 7.0.1
OpenGL extensions (GL_):
GLU version string: 1.3
GLU extensions (GLU_):
GLX extensions (GLX_):
itsf-laptop:/home/barryd/.wine# uname -a
Linux itsf-laptop 2.6.22-2-k7 #1 SMP Fri Aug 31 01:02:37 UTC 2007 i686
GNU/Linux
And I'm running Debian.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9739
Summary: Gex: Enter The Gecko installs fine, crashes when started
Product: Wine
Version: 0.9.45.
Platform: PC
URL: http://dodownload.filefront.com/2061745//ae0ef0efe64ca78
d6a8da80338382abf21d847a6309ce67167f66fbc04f5b34a2eae6ec
5dc6db52a
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cedric.dewijs(a)tiscali.nl
Created an attachment (id=8172)
--> (http://bugs.winehq.org/attachment.cgi?id=8172)
The console output from starting the full version of the game without
glide2.dll
After installing the demo, the game crashed, while asking for glide2x.dll which
is not part of wine by default. After downloading the file from the following
location, i got another error message.
http://www.dll-files.com/dllindex/dll-files.shtml?glide2x
Both the demo and the full version of the game give the same error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.