http://bugs.winehq.com/show_bug.cgi?id=1222
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 06:56 -------
Bug comments restored from Gmane.org:
It installed fine, but running it causes a failure. It's on Wine 20021219 on
FreeBSD 4.7 with DX8 libraries installed.
The demo is (will be) available at http://www.rbt.ca/ta/tadinst.exe, but is
approx 21MB.
Could not stat /mnt/fd0 (No such file or directory), ignoring drive A:
Could not stat /cdrom (No such file or directory), ignoring drive D:
fixme:reg:GetSystemInfo not yet supported on this system
fixme:system:SystemParametersInfoA Unimplemented action: 94
(SPI_GETMOUSETRAILS)fixme:system:SystemParametersInfoA Unimplemented
action: 93
(SPI_SETMOUSETRAILS)fixme:ddraw:Main_DirectDraw_SetCooperativeLevel
(0x28365430)->(00010021,00000053)
fixme:ddraw:Main_DirectDrawClipper_Initialize
(0x283667f8)->(0x2836543c,0x00000000),stub!
fixme:x11drv:X11DRV_DDHAL_CreatePalette stub
wine: Unhandled exception, starting debugger...
fixme:winmm:MMDRV_Exit Closing while ll-driver open
Backtrace of wine.core:
(gdb) backtrace
#0 RtlEnterCriticalSection (crit=0x2813efc4) at critsection.c:175
#1 0x28119a21 in VIRTUAL_FindView (addr=0x18) at virtual.c:207
#2 0x2811a866 in VIRTUAL_HandleFault (addr=0x18) at virtual.c:803
#3 0x28118a6e in do_segv (context=0x28570540, trap_code=12, cr2=0x18,
err_code=0)
at signal_i386.c:746
#4 0x28118e31 in segv_handler (__signal=10, code=12, __context=0x28570828) at
signal_i386.c:995
#5 0xbfbfffac in ?? ()
#6 0x28100a44 in wine_server_call (req_ptr=0x28570a68) at
../../scheduler/client.c:227
#7 0x28739987 in CONSOLE_GetNumHistoryEntries () at ../../include/wine/server.h:60
#8 0x28738334 in CONSOLE_HandleCtrlC (sig=2) at console.c:1363
#9 0x28118f24 in int_handler (__signal=2, code=0, __context=0x28570e7c) at
signal_i386.c:434
#10 0xbfbfffac in ?? ()
#11 0x281066ce in WaitForMultipleObjectsEx (count=1, handles=0x28682d64,
wait_all=0,
timeout=4294967295, alertable=0) at ../../scheduler/synchro.c:265
#12 0x28106506 in WaitForSingleObject (handle=0x4c, timeout=4294967295)
at ../../scheduler/synchro.c:205
#13 0x28739c00 in WaitForDebugEvent (event=0x28682e68, timeout=4294967295)
at
debugger.c:125
#14 0x2843fb6c in DEBUG_MainLoop () at winedbg.c:887
#15 0x284401be in main (argc=2, argv=0xbfbff734) at winedbg.c:1117
#16 0x28428174 in __wine_exe_main () at winedbg.exe.spec.c:564
#17 0x28102926 in start_process () at ../../scheduler/process.c:564
#18 0x28106829 in call_on_thread_stack (func=0x28102704) at
../../scheduler/sysdeps.c:112
------- Additional Comments From rbt <at> rbt.ca 2003-01-12 16:26 -------
*** This bug has been confirmed by popular vote. ***
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-01-14 05:44
-------
Sounds like ddraw/d3d failure. CC'ing Lionel...
------- Additional Comments From lionel.ulmer <at> free.fr 2003-01-14 15:27 -------
Well, it's working fine here with latest Wine CVS...
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-01-14 15:48
-------
Well, I take that as a request to close this bug ;-)
Feel free to reopen in case of any remaining issues.
------- Additional Comments From rbt <at> rbt.ca 2003-01-19 23:32 -------
Updated to 20030115 and the problem persists -- though I no longer seem to be
getting a core dump.
Here's what I did:
- Installed wine using FreeBSD port (cd /usr/ports/emulators/wine; make install)
- wine wcmd
- DX80eng.exe (Install directX 8)
- tadinst.exe (install TA Demo)
I have a similar (Exactly the same?) problem with SimCity 4.
There are no other installed files. I do not have windows on this computer --
strictly wine, per above.
------- Additional Comments From rbt <at> rbt.ca 2003-01-23 11:51 -------
I managed to get it working under WineX.
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-01-23 12:05
-------
Eh ? Excuse me, but somehow I didn't know that this was some bug tracking for
WineX... ;)
In short: no way, and if necessary I'll drag you kickin' and screamin' :-)
Anyway, there IS a problem, so it shouldn't be closed, and if someone comes
along who wants to pursue it, then we definitely won't hold him back...
------- Additional Comments From rbt <at> rbt.ca 2003-04-17 20:38 -------
200304 seems to have fixed this.
It should be noted that there was an XFree update in there as well, so the
problem may have been video card drivers.
Thanks!
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1233
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 06:49 -------
Bug comments restored from Gmane.org:
Wine 20030115
In X11DRV_CreateWindow, a window with WS_MAXIMIZE or WS_MINIMIZE set
may be
activated to early.
Changeing, at dll/x11drv/window.c line 1014
swFlag = ((wndPtr->dwStyle & WS_CHILD) || GetActiveWindow()
? SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED
: SWP_NOZORDER | SWP_FRAMECHANGED;
to
swFlag = ((wndPtr->dwStyle & WS_CHILD) || GetActiveWindow() ||
!(wndPtr->dwStyle & WS_VISIBLE))
? SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED
: SWP_NOZORDER | SWP_FRAMECHANGED;
fixed it.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1232
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 06:48 -------
Bug comments restored from Gmane.org:
using Kazaalite with builtin comctl32, if i try to sort a treeview by clicking
on a column title, wine wont sort it and prints this message
err:treeview:TREEVIEW_Sort invalid item hParent=0
as a temporary workaround, i changed the following in TREEVIEW_Sort() from
treeview.c
/* Check for a valid handle to the parent item */
if (!TREEVIEW_ValidItem(infoPtr, parent))
{
ERR("invalid item hParent=%x\n", (INT)parent);
return FALSE;
}
to
/* Check for a valid handle to the parent item */
if (!TREEVIEW_ValidItem(infoPtr, parent))
{
ERR("invalid item hParent=%x\n", (INT)parent);
/* return FALSE; */ /* i still requested a sort.... */
parent=infoPtr->root;
}
which does the trick for now, and all columns sort as you would expect.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1229
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 06:47 -------
Bug comments restored from Gmane.org:
I'd appreciate hearing from anyone who has gotten Sametime Connect to work on
wine. I'm using version 20021219 and when i execute
wine c:\\sametime\\connect.exe
it starts but seems to be hanging. I can bring up the preferences, but cannot
save anything or connect to the server. Everytime I click on a menu item I get
the following error
fixme:menu:TrackPopupMenuEx not fully implemented
if anyone can point me in the right direction to get this to work
thanks
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1228
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 06:46 -------
Bug comments restored from Gmane.org:
Hi Dear,
I have success with games NFS3 and 4x4 and much more of course. I use Wine
version 20021219.i586.rpm and he works fine. I have problem only with my Wingman
Formula GP Wheel. When I start racing, my Wheel is go to the left and also all
pedals is simulated like it is pushed. Generaly I cannot use my Steering Wheel.
In configuration menu of Need for Speed 3, I see the system is recognized my
Wheel like Wine Joystick, but all x,y,z is going to left side. This i see also
in game 4x4. When I start some Linux games based on joystick, like Tux Racer, my
Steering Wheel is work perfekt. I can drive pinguin with Wheel and pedals, also
I can use buttons on the Wheel. May be I have to add some lines into my wine
configuration file ? My joystick (WingMan Formula GP) is connected to computer
via USB port, and Linux is recognized him. I use Linux Mandrake 9.0 Final.
Please help !
Best Regards,
Valentin Iliev
mail: v_iliev <at> abv.bg
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1224
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 06:45 -------
Bug comments restored from Gmane.org:
With wine release 12192002:
Upon pressing the "install" button in the Total Annihilation installer, the
process hangs with this backtrace:
Wine-dbg>bt
Backtrace:
=>0 0x420d224b (NTDLL.DLL.memcpy+0x55dfb) (ebp=42362eb4)
1 0x41305221 (WINEOSS.DRV..data+0x3221 in wineoss.drv.so) (ebp=42362f08)
2 0x400d280e (THREAD_Start+0x7e [thread.c] in libntdll.dll.so) (ebp=42362f28)
3 0x400d18a9 (SYSDEPS_StartThread+0xa9 [sysdeps.c] in libntdll.dll.so)
(ebp=42362ff4)
4 0x420da1ca (NTDLL.DLL.memcpy+0x5dd7a) (ebp=00000000)
If I remove my sound driver (and prevent kmod from autoloading it by removing
the entry in /etc/modules.conf), the install progresses normally.
I have several other apps that work properly with sound.
I am using the kernel OSS driver under kernel 2.4.20pre5ac4 with the driver
i810_audio.
While playing the game sound is intermittant. The intro seems to play ok with
sound but after that there is no sound at all in the game.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1221
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 06:43 -------
Bug comments restored from Gmane.org:
A infogrames (Kelloggs) game based on directx 8 ; it starts but crashes
before loding the game menu.
[ivan@localhost bin]$ wine bblit2.exe
fixme:system:ChangeDisplaySettingsA (0x406af244,0x00000002), stub
flags=TEST,
fixme:system:ChangeDisplaySettingsA bpp=16
fixme:system:ChangeDisplaySettingsA (Putting X in this mode beforehand might he
fixme:system:ChangeDisplaySettingsA (0x406af14c,0x00000004), stub
flags=FULLSCREEN,
fixme:system:ChangeDisplaySettingsA bpp=16
fixme:system:ChangeDisplaySettingsA width=640
fixme:system:ChangeDisplaySettingsA height=480
fixme:system:ChangeDisplaySettingsA (Putting X in this mode beforehand might he
fixme:system:ChangeDisplaySettingsA (0x406af240,0x00000002), stub
flags=TEST,
fixme:system:ChangeDisplaySettingsA bpp=16
fixme:system:ChangeDisplaySettingsA (Putting X in this mode beforehand might he
fixme:system:ChangeDisplaySettingsA (0x406af148,0x00000004), stub
flags=FULLSCREEN,
fixme:system:ChangeDisplaySettingsA bpp=16
fixme:system:ChangeDisplaySettingsA width=640
fixme:system:ChangeDisplaySettingsA height=480
fixme:system:ChangeDisplaySettingsA (Putting X in this mode beforehand might he
wine: Unhandled exception, starting debugger...
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
Terminated
[ivan@localhost bin]$
Debugger output
'C:\WINDOWS\SYSTEM\USER32.DLL' (0x40790000) No debug information in 32bit
DLL
'C:\WINDOWS\SYSTEM\LZ32.DLL' (0x40950000) No debug information in 32bit
DLL
'C:\WINDOWS\SYSTEM\VERSION.DLL' (0x40940000) No debug information in 32bit
DLL
'C:\WINDOWS\SYSTEM\WINMM.DLL' (0x409c0000) No debug information in 32bit
DLL
'C:\WINDOWS\SYSTEM\MSACM32.DLL' (0x409a0000) No debug information in 32bit
DLL
'C:\WINDOWS\SYSTEM\COMCTL32.DLL' (0x40a40000) No debug information in
32bit DLL
'C:\WINDOWS\SYSTEM\MSVFW32.DLL' (0x40a20
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\LZ32.DLL' (0x40950000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\VERSION.DLL'
(0x40940000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL'
(0x409c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL'
(0x409a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL'
(0x40a40000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVFW32.DLL'
(0x40a20000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x40bd00
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\VERSION.DLL'
(0x40940000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL'
(0x409c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL'
(0x409a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL'
(0x40a40000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVFW32.DLL'
(0x40a20000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL'
(0x40bd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40b6000
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL'
(0x409c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL'
(0x409a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL'
(0x40a40000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVFW32.DLL'
(0x40a20000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL'
(0x40bd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40b60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL' (0x40c10
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL'
(0x409a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL'
(0x40a40000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVFW32.DLL'
(0x40a20000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL'
(0x40bd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40b60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL'
(0x40c10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL' (0x40af0
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL'
(0x40a40000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVFW32.DLL'
(0x40a20000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL'
(0x40bd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40b60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL'
(0x40c10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL'
(0x40af0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\AVIFIL32.DLL' (0x4097
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVFW32.DLL'
(0x40a20000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL'
(0x40bd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40b60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL'
(0x40c10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL'
(0x40af0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\AVIFIL32.DLL'
(0x40970000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL' (0x40c500
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL'
(0x40bd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40b60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL'
(0x40c10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL'
(0x40af0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\AVIFIL32.DLL'
(0x40970000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL'
(0x40c50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL' (0x40c800
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40b60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL'
(0x40c10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL'
(0x40af0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\AVIFIL32.DLL'
(0x40970000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL'
(0x40c50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL'
(0x40c80000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40cb00
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL'
(0x40c10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL'
(0x40af0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\AVIFIL32.DLL'
(0x40970000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL'
(0x40c50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL'
(0x40c80000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL'
(0x40cb0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV' (0x415e0
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL'
(0x40af0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\AVIFIL32.DLL'
(0x40970000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL'
(0x40c50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL'
(0x40c80000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL'
(0x40cb0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV'
(0x415e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV'
(0x4161000
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\AVIFIL32.DLL'
(0x40970000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL'
(0x40c50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL'
(0x40c80000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL'
(0x40cb0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV'
(0x415e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV'
(0x41610000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV' (0x41620
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL'
(0x40c50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL'
(0x40c80000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL'
(0x40cb0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV'
(0x415e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV'
(0x41610000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV'
(0x41620000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\INFOGRAMES\BUGS
BUNNY
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL'
(0x40c80000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL'
(0x40cb0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV'
(0x415e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV'
(0x41610000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV'
(0x41620000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\INFOGRAMES\BUGS
BUNNY & TAZ
- IN VIAGGIO NEL TEMPO DEMO\BIN\WKEYKILL.DLL' (0x10000000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL'
(0x40cb0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV'
(0x415e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV'
(0x41610000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV'
(0x41620000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\INFOGRAMES\BUGS
BUNNY & TAZ
- IN VIAGGIO NEL TEMPO DEMO\BIN\WKEYKILL.DLL' (0x10000000)
Unhandled exception: stack overflow in 32-bit code (0x402e9099).
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV'
(0x415e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV'
(0x41610000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV'
(0x41620000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\INFOGRAMES\BUGS
BUNNY & TAZ
- IN VIAGGIO NEL TEMPO DEMO\BIN\WKEYKILL.DLL' (0x10000000)
Unhandled exception: stack overflow in 32-bit code (0x402e9099).
In 32-bit mode.
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV'
(0x41610000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV'
(0x41620000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\INFOGRAMES\BUGS
BUNNY & TAZ
- IN VIAGGIO NEL TEMPO DEMO\BIN\WKEYKILL.DLL' (0x10000000)
Unhandled exception: stack overflow in 32-bit code (0x402e9099).
In 32-bit mode.
0x402e9099 (NTDLL.DLL.memcpy+0x4a839 in libc.so.6): call 0x4023fefd
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV'
(0x41620000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\INFOGRAMES\BUGS
BUNNY & TAZ
- IN VIAGGIO NEL TEMPO DEMO\BIN\WKEYKILL.DLL' (0x10000000)
Unhandled exception: stack overflow in 32-bit code (0x402e9099).
In 32-bit mode.
0x402e9099 (NTDLL.DLL.memcpy+0x4a839 in libc.so.6): call 0x4023fefd
(NTDLL.DLL.sqrt+0x30d5d in libc.so.6)
No debug information in 32bit DLL 'C:\PROGRAM FILES\INFOGRAMES\BUGS
BUNNY & TAZ
- IN VIAGGIO NEL TEMPO DEMO\BIN\WKEYKILL.DLL' (0x10000000)
Unhandled exception: stack overflow in 32-bit code (0x402e9099).
In 32-bit mode.
0x402e9099 (NTDLL.DLL.memcpy+0x4a839 in libc.so.6): call 0x4023fefd
(NTDLL.DLL.sqrt+0x30d5d in libc.so.6)
- IN VIAGGIO NEL TEMPO DEMO\BIN\WKEYKILL.DLL' (0x10000000)
Unhandled exception: stack overflow in 32-bit code (0x402e9099).
In 32-bit mode.
0x402e9099 (NTDLL.DLL.memcpy+0x4a839 in libc.so.6): call 0x4023fefd
(NTDLL.DLL.sqrt+0x30d5d in libc.so.6)
Wine-dbg>
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-01-16 08:29
-------
Sounds like it *might* be ChangeDislaySettingsA related...
CC'ing Lionel Ulmer, as ChangeDisplaySettingsA urgently needs a working
implementation anyway ;-)))
------- Additional Comments From lionel.ulmer <at> free.fr 2003-01-17 13:08 -------
Well, if it's DX8 related, run a +ddraw,+d3d log and see if any lines appear
here... From what I see in this log, it may well crash before doing any DirectX
stuff.
And I won't do any work on ChangeDisplaySettings :-)
BTW, did you try starting your X server in 16 bpp ?
------- Additional Comments From puoti <at> inwind.it 2003-01-17 16:09 -------
I tried with +ddraw +d3d, and with X in 16 bbp, with cvs wine from today,
nothing changed, same result and same sheel output, I didn't wait for debugger
output, but I can do so if you want.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2003-01-21
21:04 -------
Definately not directX if output to console did not change. If you attach the
last 3000 lines of "-debugmsg +relay" and a backtrace "bt" from the debugger it
might give us a better idea of where/why it is crashing.
------- Additional Comments From puoti <at> inwind.it 2003-01-22 09:16 -------
Created an attachment (id=370)
--> (http://bugs.winehq.com/attachment.cgi?id=370&action=view)
Last 3000 lines of +relay
------- Additional Comments From puoti <at> inwind.it 2003-01-22 09:19 -------
The debugger crashes when I try and type bt, and a new debugger opens to debug
the debugger! If you need the normal debug output or if you have some idea to
give the debugger the bt input, let me know.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2003-01-22
11:51 -------
Your problem with winedbg sounds familiar. There was a recent thread about this
on wine devel.
http://www.winehq.com/hypermail/wine-devel/2002/12/0777.html
There was a patch for WineX that I suppose should fix the problem.
http://www.winehq.com/hypermail/wine-devel/2002/12/0807.html.
I have not tried the patch and it seems that the problem is still in CVS
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1529
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-20-06 05:51 -------
Dumping FIXMEs into bugzilla isn't very helpful I'm afraid. In this case, the
messages are mostly harmless. Patches to resolve them are welcome.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.