http://bugs.winehq.org/show_bug.cgi?id=2316
Summary: IE locks up with 20040615 often, worked fine with
20040505
Product: Wine
Version: 20040615
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mrmailer(a)myway.com
With the transition from 20040505 to 20040615, IE locks up a great deal more, on
both machines I have tried it on. Going back to 20040505 fixes the problem.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=2315
Summary: Diamond: err:opengl:X11DRV_ChoosePixelFormat Flag not
supported!
Product: Wine
Version: 20040615
Platform: PC
URL: http://www.crystalimpact.com/diamond/download.htm,
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: burnus(a)gmx.de
I installed Crystal Impact's Diamond
(http://www.crystalimpact.com/diamond/download.htm, the demo version link can be
found at the very bottom of that page; compare ticked 42035).
(This is on SUSE 9.1 with wine-20040615-0.1 and within the CX Office 3.0.1
directory. CX wine (20040213) stops much earlier.)
I start the program and try then to open a file from the "sample" directory.
Almost immediately I get then the error.
~/.cxoffice/dotwine/fake_windows/Program Files/Diamond2> /usr/bin/wine Diamond.exe
fixme:ole:CoRegisterMessageFilter stub
fixme:commdlg:GetFileName95 Flags 0x00002000 not yet implemented
err:opengl:X11DRV_ChoosePixelFormat Flag not supported !
[Messagebox:
ChoosePixelFormat() returns 0 (last error = 0)
SetPixelFormat() returns 1 (last error = 0)
wglCreateContext() returns 0 (last error 2000)
wglMakeCurrent() returns 1 (last error = 0)]
wine: Unhandled exception (thread 0009), starting debugger...
fixme:console:SetConsoleCtrlHandler (0x405cf060,1) - no error checking or
testing yet
WineDbg starting on pid 0x8
Unhandled exception: page fault on write access to 0x44f93000 in 32-bit code
(0x0054052e).
In 32 bit mode.
0x0054052e: repe movsl (%esi),%es:(%edi)
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=2300
------- Additional Comments From mike(a)tashcorp.net 2004-25-06 20:00 -------
As posted to wine-devel:
After sucking it up and realizing I'd have to learn how to navigate winedbg,
I started playing around with the Galactic Civilizations unhandled exception.
Some documentation and a few trips through winedbg later, it appears that
Gal Civ is throwing a divide-by-zero
-----------<snip>---------------
First chance exception: divide by zero in 32-bit code (0x40f2cda8)
-----------<snip>---------------
I did a 'bt' next:
-----------<snip>---------------
=>1 0x40f2cda8 send_mouse_event+0xc8(hwnd=0x10024, flags=0x8001,
posX=0x1fb0000, posY=0x1df, data=0x0, time=0xef3d) [mouse.c:135] in x11drv
(0x406cfbb0)
2 0x40f2e010 X11DRV_MotionNotify+0x60(hwnd=0x10024, event=0x406cfc4c)
[mouse.c:613] in x11drv (0x406cfbdc)
3 0x40f24e90 .L79+0xa in x11drv (0x406cfc3c)
... stuff ...
-----------<snip>---------------
and then did an 'info local' and got:
-----------<snip>---------------
send_mouse_event:
struct HWND__* hwnd = 0x00010024 (parameter)
long unsigned int flags = 0x00008001 (parameter)
long unsigned int posX = 0x01fb0000 (parameter)
long unsigned int posY = 0x000001df (parameter)
long unsigned int data = 0x00000000 (parameter)
long unsigned int time = 0x0000ef3d (parameter)
unsigned int state = 0x0000004c (local in register ECX)
unsigned int state = 0x0000004c (local in register ECX)
struct HWND__* hwnd = 0x01faffff (local in register EAX)
long unsigned int data = 0x01faffff (local in register EAX)
long unsigned int time = 0x0000ef3d (local in register EDI)
struct tagINPUT input = 0x40f61028 (local)
int width = 0x00000000 (local in register ESI)
int height = 0x00000000 (local)
-----------<snip>---------------
After digging around in dlls/x11drv/mouse.c (see the bt output), I found:
-----------<snip>---------------
int width = GetSystemMetrics( SM_CXSCREEN );
int height = GetSystemMetrics( SM_CYSCREEN );
/* Relative mouse movements seem not to be scaled as absolute ones */
posX = (((long)posX << 16) + width-1) / width;
posY = (((long)posY << 16) + height-1) / height;
-----------<snip>---------------
The posX and poxY calculations are the only divides in the send_mouse_event
function (pointed to by the bt as the stack location when the divide-by-zero
occurred). The 'info local' confirms that width and height are indeed 0. My
problem is that I do not think GetSystemMetrics should be returning 0. The
display is quite chorked up by the time the unhandled exception occurs, so
I'm pretty sure something bad has already happened; I just don't know what.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=2137
------- Additional Comments From markf78(a)yahoo.com 2004-25-06 19:22 -------
using wine-pthread directly eliminates the segfault...
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=2314
Summary: Scrollbars regression ?
Product: Wine
Version: 20040615
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabriele.giorgetti(a)teamfab.it
Hello, I've noticed a problem with scrollbars in the
latest Wine's release (20040615). With wine version
20040505 everything was just fine.
I've attacched a zip file with two screenshots
the first one is the correct behavior of the app using
wine 20040505 the second one is wine 20040615 and the
app in its wrong behavior.
Trying to describe the problem:
The application show up with a bottom scrollbar and
a right scrollbar even if they are not needed. When
executing the very same application, with the very
same settings and size with wine 20040505 the scrollbars
are not there.
I hope you get it
Thanks.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=2313
Summary: show symbolic links to dirs in FileOpenDialog view
Product: Wine
Version: 20030911
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivanr(a)syncad.com
Hi,
I need to make FileOpenDialog show symbolic links to dirs. Could you implement
this feature? Or could you give me any suggestions where to start from?
Thanks in advance.
Ivan
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=2296
------- Additional Comments From winehq(a)slacy.com 2004-24-06 11:15 -------
I've upgraded to wine-0.20040615-1.rhfc2.nr, and have the same problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.