http://bugs.winehq.com/show_bug.cgi?id=890
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 08:08 -------
Bug comments from Gmane.org:
As usual, AutoCAD seems to be a good test-bench for wine :-)
I spotted the problem that seemed coming from VirtualQuety function, but
that is (I guess... hmmmm) more a problem of memory handling in wine.
I made a little test app; here the results in wine and win2k, later on
the app itself :
WINE RESULTS :
Memory info about '004012F0' :
Base Address : 00401000
Allocation Base : 00400000
Allocation Protect : PAGE_READONLY | PAGE_WRITECOPY |
PAGE_EXECUTE_READWRITE | PAGE_NOACCESS
Region Size : 00017000
State : MEM_COMMIT
Protect : PAGE_WRITECOPY <----- HERE
Type : MEM_PRIVATE
WIN2k RESULTS :
Memory info about '004012F0' :
Base Address : 00401000
Allocation Base : 00400000
Allocation Protect : PAGE_EXECUTE_WRITECOPY
Region Size : 00001000
State : MEM_COMMIT
Protect : PAGE_EXECUTE_READ <---- AND HERE
Type : MEM_IMAGE
Well, dunno too much about Type field, I didn't find an app that check it yet;
I did find the app that uses Protect flag; I think it's poor coded, but as
usual we should make bad apps work too :-)
The app put some data in code page, not yet spotted if hard or soft-coded,
then before reading it checks Protect field to see if it has not set the
PAGE_GUARD, NO_ACCESS and WRITECOPY flags; if t has, it hangs some 10.000
lines later (sigh....)
I think wine should set Protect flag quite as like as possible as windoze
For AutoCAD2000 I put a dirty hack in process.c, but is really ugly; i'd
prefer not to put my hands (bytes ?) too deeply inside some code that I don't
understand completely...
Attached is the test source (compiled in Borland CBuilder, but should work
with any compiler, apart some unuseful pragma's).
If needed I can post the compiled too :-)
------- Additional Comments From maxx2 <at> veneto.com 2002-07-18 03:09 -------
Created an attachment (id=232)
--> (http://bugs.winehq.com/attachment.cgi?id=232&action=view)
C++ Test app for bug 890
------- Additional Comments From maxx2 <at> veneto.com 2002-07-19 14:42 -------
Just submitted a Patch on wine-patches that seems to solve the problem.
--
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=889
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 08:06 -------
Bug comments restored from Gmane.org:
Using the game Dynomite from PopCap Games works very well except that the offset
for the graphics is the same as the offset of the window (on the desktop) in
which the graphics are being displayed; I essentially eliminated the code in
WINPOS_GetWinOffset() by adding a return immediately following the code that
sets of the X and Y component of the offset to 0 -- this solves the problem but
I suspect that it will cause problems elsewhere; the file of interest is
windows/winpos.c; feel free to contact me for any additional information
------- Additional Comments From tuiningas_ml <at> shaw.ca 2002-07-21 00:26 -------
I followed the trail a little bit
further as I noticed that "hot spots" on an image (like buttons) would
fade in and out when the window wasn't at the top left of the screen.
The trail led to the file dlls/x11drv/winpos.c. It is making a call to
MapWindowPoints() which in turn calls WINPOS_GetWinOffset(). If I
eliminate the call to MapWindowPoints() in the function expose_window()
at line 290, (and restore the original version of windows/winpos.c)
everything works beautifully. The window draws itself properly and the
buttons work as expected. I am not all that familiar with Wine code,
though, so can anyone think of a good reason why this code ought to be
there? Should I submit a patch? And if so, can anyone point me to the
method required for doing so? Thanks.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-21
09:59 -------
I am not that familiar with wine internals either, but if you submit a patch to
wine_patches <at> winehq.com, I'm sure that if there is something wrong with it
someone will point it out.
The following links are from the Wine Developers Guide on how to submit patches
http://www.winehq.com/Docs/wine-devel/patches.shtmlhttp://www.winehq.com/Docs/wine-devel/patch-quality.shtml
------- Additional Comments From tuiningas_ml <at> shaw.ca 2002-07-23 21:42 -------
Created an attachment (id=239)
--> (http://bugs.winehq.com/attachment.cgi?id=239&action=view)
Proposed patch for this ug
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-24
10:26 -------
I applied your patch to my system and tested it with several programs and the
results are not very good. the startup screen of winzip is totally corrupted by
this patch.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-24
10:30 -------
Created an attachment (id=240)
--> (http://bugs.winehq.com/attachment.cgi?id=240&action=view)
Screen shot showing corruption of Winzip startup screen.
------- Additional Comments From tuiningas_ml <at> shaw.ca 2002-07-24 22:42 -------
The proposed patch that I made was wrong but it seems that someone else made the
right patch elsewhere so it is now fixed. I guess the moral of the story is: if
you wait long enough, someone else will do it for you.... :-)
------- Additional Comments From tony_lambregts <at> telusplanet.net 2003-03-26
15:20 -------
Closing
--
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=888
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 08:04 -------
Bug comments restored from Gmane.org:
It would be nice to be able to have a key-combo (one that you wouldn't likely
use in Windows -- eg CTRL-ALT-SHIFT-R or something silly.) that would RELEASE a
mouse that is DXGrabbed, so that a user may go back to his desktop, deal with
other programs, and then lock it back... normally, you would just turn DX grab
off, but that makes games nearly impossible to play. Being able to release, do
whatever else you wanna do, and the click back in the window to re-lock would be
sweet.
--
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=885
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 08:03 -------
Bug comments restored from Gmane.org:
When playing Riven I can move ahead and the screens are fine, but when I want to
rotate the view the screen gets corrupted. I think I have tracked the problem
down to StretchBlt and BitBlt in X11, but I have run into problems debugging it.
It turns out that winedbg uses BITBLT_InternalStretchBlt extensivly so I cannot
use winedbg to track down.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-16
23:19 -------
Created an attachment (id=228)
--> (http://bugs.winehq.com/attachment.cgi?id=228&action=view)
Screen shot before rotate.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-16
23:21 -------
Created an attachment (id=229)
--> (http://bugs.winehq.com/attachment.cgi?id=229&action=view)
Screen shot after rotate
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-16
23:22 -------
Created an attachment (id=230)
--> (http://bugs.winehq.com/attachment.cgi?id=230&action=view)
Screenshot of what it should look liek after rotate.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-16
23:26 -------
Created an attachment (id=231)
--> (http://bugs.winehq.com/attachment.cgi?id=231&action=view)
Short log file that goes with screen shots
------- Additional Comments From dclark <at> akamail.com 2002-07-17 11:32 -------
Yep, I agree. I noticed that by setting transitions to "best", it becomes really
obvious what is happening. It is supposed to scroll the window left or right,
and then paints in the new portion of the display. It does it with calls like this:
trace:scroll:X11DRV_ScrollDC 08dc -181,0 hrgnUpdate=0000 rcUpdate = (nil)
which as you suggest causes a BitBlt:
trace:bitblt:BitBlt hdcSrc=08dc 181,0 24 bpp->hdcDest=08dc 0,0 427x392x24
rop=cc0020
For some reason, that does not seem to be working. Only the new part is being
painted in. The scroll never happens. I never got much beyond that point.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-18
12:25 -------
:BitBlt hdcSrc=08dc 181,0 24 bpp->hdcDest=08dc 0,0 427x392x24 rop=cc0020
OK. This looks (to me) like the source and destination are the same. hdcSrc and
hdcDest both = 08dc. Based on my experience with SimCity's screen corruption I
am inclined to be suspicious of this. The other thing about it is that it is
24bpp and as Lionel says its evil <g>
source x = 181
source y = 0
destination x = 0
destination y = 0
width = 427
hieght = 392
So my assumption is that you clicked on the right side of the screen and the
left hand side of the screen is not getting updated, right?
------- Additional Comments From dclark <at> akamail.com 2002-07-18 17:48 -------
Yep, that was a click on the right. And of course there is a series of quick
scrolls of various sizes, corresponding to the various sized pieces left on the
right side causing the screen corruption.
trace:scroll:X11DRV_ScrollDC 08dc -181,0 hrgnUpdate=0000 rcUpdate = (nil)
trace:scroll:X11DRV_ScrollDC 08dc -81,0 hrgnUpdate=0000 rcUpdate = (nil)
trace:scroll:X11DRV_ScrollDC 08dc -81,0 hrgnUpdate=0000 rcUpdate = (nil)
trace:scroll:X11DRV_ScrollDC 08dc -82,0 hrgnUpdate=0000 rcUpdate = (nil)
trace:scroll:X11DRV_ScrollDC 08dc -60,0 hrgnUpdate=0000 rcUpdate = (nil)
I think 24 bits is only because that is what my video card is set for, so that
is what wine is using. Riven itself is only 8 bit color, as I recall.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-18
19:47 -------
Well I've tracked it down to this code snippet
case SRCCOPY: /* 0xcc */
if (dcSrc->bitsPerPixel == dcDst->bitsPerPixel)
{
wine_tsx11_lock();
XSetFunction( gdi_display, physDevDst->gc, GXcopy );
XCopyArea( gdi_display, physDevSrc->drawable,
physDevDst->drawable, physDevDst->gc,
physDevSrc->org.x + visRectSrc.left,
physDevSrc->org.y + visRectSrc.top,
width, height,
physDevDst->org.x + visRectDst.left,
physDevDst->org.y + visRectDst.top );
physDevDst->exposures++;
wine_tsx11_unlock();
return TRUE;
}
In each case it goes into this code. (XCopyArea is not a wine function)
can you confirm?
------- Additional Comments From dclark <at> akamail.com 2002-07-18 22:56 -------
Yep, it looks like that for me. I added a trace to check the parameters to
XCopyArea, and they look ok.
case SRCCOPY: /* 0xcc */
if (dcSrc->bitsPerPixel == dcDst->bitsPerPixel)
{
TRACE(" src_xy=%d,%d size=%d,%d dst_xy=%d,%d\n",
physDevSrc->org.x + visRectSrc.left,
physDevSrc->org.y + visRectSrc.top,
width, height,
physDevDst->org.x + visRectDst.left,
physDevDst->org.y + visRectDst.top );
I think what is happening is that the first bitblt is doing the scroll on an
internal image.
trace:bitblt:BitBlt hdcSrc=08dc 38,0 24 bpp->hdcDest=08dc 0,0 570x392x24
rop=cc0020
...
trace:bitblt:BITBLT_InternalStretchBlt src_xy=38,0 size=570,392 dst_xy=0,0
And then the second copies the entire image to the screen
trace:bitblt:StretchBlt 08dc 0,0 608x392x24 -> 0894 0,0 608x392x24 rop=cc0020
...
trace:bitmap:X11DRV_DIB_SetImageBits
XPutImage(44041069,0x8079818,0x80b3ec0,0,0,0,0,608,436)
...
trace:bitblt:BITBLT_InternalStretchBlt src_xy=0,0 size=608,392 dst_xy=16,22
The dst_xy on this second one is offset to accomodate the frame (I think).
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-18
23:30 -------
It's a timing problem, it seems that when the source and destination are the
same the screen is not updated properly before the next bitblt. I found this out
by putting a FIXME in a for loop. I wanted to slow this down so I could see the
problem as it progressed. What it did is clear the problem up.
....
physDevDst->exposures++;
wine_tsx11_unlock();
if (physDevDst == physDevSrc){
INT q;
for(q=1;q<1000 q++){
FIXME("Same Source;
}
}
return TRUE;
....
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-19
02:50 -------
Created an attachment (id=235)
--> (http://bugs.winehq.com/attachment.cgi?id=235&action=view)
Horribly hacked solution that masks the problem (patch)
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-19
21:13 -------
Duane, have you tried Riven with either of my hacks and if so what do you think
the problem is? Do you have any idea how to really fix this or should we leave
it to one of the real wine guru's?
------- Additional Comments From dclark <at> akamail.com 2002-07-20 11:38 -------
I tried both. They partially fix it for me, but not completely. I still get a
single piece of the old view, though it is a much smaller piece than before. It
always happens if I first move forward and then turn sideways. And of course the
other noticable thing is that the window does not slide (scroll) but instead
just jumps from one view to the other.
I notice that if I obscure part of the window with another window and then
uncover it, that it is repainted with the corruption still there. By the way, I
can always get the window to repaint correctly by sliding my mouse down into the
area at the bottom where the books are kept. This might require the window focus
to be set to focus follows mouse.
I don't really have much of a feel for where the problem is. It appears to me
that the bitblt commands have the correct parameters, so like you I think this
is some sort of timing problem. I have the Xlib reference book that explains the
XCopyArea command, but it does not mention any gotchas if the two Drawables are
the same. At the point I don't think I now enough to know how to attack it.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-24
18:42 -------
I've had several days to think about this one and I have come up with the
following conclusions
1. The problem is not with the source and destination drawables being the same.
This is pretty rock stable stuff that has been tested in X11 for years. Also
while Debuging Bug 792 I noticed that when scrolling in the file dialog that
the source and destination were the same with no screen corruption. (I had put a
fixme in the code to detect this.) So it isn't this.
2. Timing is a factor because slowing down the execution of same drawables
clears up the problem somewhat.
3. If I move forward and then turn. at the begining of the trace there is this
fixme.
> fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy
This does not occure if I am turning around in circles. What brought my
attention to this is that another program that has screen corruption (Bug 911)
displays this fixme a lot.
All that means is that I understand the problem a little better and have a hint
of where to look next I suppose. My burning question at this point is what does
the somewhat cryptic fixme really mean?
------- Additional Comments From dclark <at> akamail.com 2002-07-25 13:00 -------
I think that slowing down redrawing is actually masking the problem, rather than
fixing it somewhat. I noticed that what Riven appears to do is measure how long
it takes to perform a scroll, and if it is too long, Riven does fewer scrolls
with larger chunks. I think this is what it is doing what it initially does
several zero length scrolls. And specifically, what makes it appear to work is
that if scrolling takes really long, it does the scroll in a single step. Since
the painting of the fill image has always worked, if the fill image is the
entire thing, it appears to work.
So in short, I am less confident now that it really is a timing issue.
------- Additional Comments From dclark <at> akamail.com 2003-01-09 14:18 -------
Fixed by:
http://www.winehq.com/hypermail/wine-cvs/2003/01/0159.html
------- Additional Comments From tony_lambregts <at> telusplanet.net 2003-01-09
19:16 -------
Closing... Thanks Duane.
--
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=881
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:56 -------
Bug comments restored from Gmane.org:
This just started in 20020710, it works properly in 20020605.
When running Icewind Dale (an opengl game), the default X mouse cursor does not
disappear, and is rendered on top of the in-game mouse cursor. The previous
release of wine worked properly, so I assume it was broken in one of the cursor
changes I see in the changelog for this release.
--
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=1345
jkreps(a)rev.state.ne.us changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
OS/Version|NetBSD |FreeBSD
Resolution| |FIXED
------- Additional Comments From jkreps(a)rev.state.ne.us 2003-20-06 07:32 -------
Upgraded from MDK 8.2 to MDK 9.1 "fresh install" and reinstalled latest stable
WINE. VFP 6 now compiles fine.
--
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=878
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:30 -------
Bug comments restored from Gmane.org:
In Managed='N', icons are correctly transparent, but in Managed='Y' mode their
transparent parts come up as black. This can be seen by using the test program
against bug #856 and a windows oleaut32.dll.
I know its picky but it annoys me!
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-14
14:38 -------
Using the test program in bug 856 the background for the icon is black even if I
have "managed" = "N". RedHat 7.2 latest CVS "oleaut32" = "native,
builtin". Is
there anything else that I should have checked or set?
------- Additional Comments From us <at> the-edmeades.demon.co.uk 2002-07-14
14:52 -------
Er - You do have an oleaut32.dll locally? Aside from that, I dont think so - I
can swap Managed in my ini file and change behaviour! I am running cvs on no-
windows except in my system dir:
ASYNCFILT.DLL, COMCAT.DLL MSVBVM60.DLL OLEPRO32.DLL STDOLE2.TLB
VB6STKIT.DLL
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-14
18:29 -------
Well I run wine with a windows 98 c:directory and oleaut32 is located in the
windows/system directory. I usually run with "*" = "builtin, native, so" though.
------- Additional Comments From us <at> the-edmeades.demon.co.uk 2002-07-18
13:38 -------
Hmmm - Sounds like I am one step ahead of you!! No idea really - The
background of the icon should be the same colour as the active window title
bar (in my case blue). The only reason I tried playing with managed is that
the X11drv part of icons has special code in one of the cases.
I am running Mandrake 8.2 if it helps, cant remember what window manager though
(I dual boot, am in windows right now...)
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-18
14:28 -------
I must check if the background of my window manager is black. (SawFish)
--
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=877
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:28 -------
Bug comments restored from Gmane.org:
When the DXgrab is enabled, and an application uses it (Half-Life), the grab can
be shaken out of. That is, if I move the mouse quickly in a direction, the
cursor will leave the window.
This is particularly visible when running a game in simulated "fullscreen".
(changing resolution)
--
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=876
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:27 -------
Bug comments restored from Gmane.org:
I first note this in ACCPAC 5.0A screens but it can be demonstrated using for
example the LISTHDR example from MSDN (with a little coding to force the issue).
1. (Fixed) There were too many columns. This was caused by
LISTVIEW_DeleteColumn returning FALSE even though it had succeeded.
2. The columns are one column too far right. MSDN documents the process of
adding a temporary first column before adding the real columns and then
deleting the first column, in order to allow non-left-justification on the real
first column. The current code does not correctly maintain the column order
list (including such issues as handling partial order arrays etc.)
Basically the dlls/comctl32/header.c code needs to be beefed up for the
following messages:
HDM_GETORDERARRAY
HDM_SETORDERARRAY
HDM_INSERTITEM(A/W)
HDM_DELETEITEM
HDM_SETITEM(A/W)
HDM_GETITEM(A/W)
HDM_ORDERTOINDEX
This will require clarification of the definitions of the "order" aspect of
these functions; MSDN is less than clear, especially about degenerate cases.
--
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=873
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:24 -------
Bug comments restored from Gmane.org:
Shell32 imports the function MapSL from kernel32. The function is not exported
under windows NT/2K or ReactOS.
shell32_main.o(.text+0x3e21):shell32_main.c: undefined reference to `MapSL@4'
shell32_main.o(.text+0x3ed6):shell32_main.c: undefined reference to `MapSL@4'
------- Additional Comments From apa3a <at> yahoo.com 2002-08-07 12:25 -------
Forwarding to the developer responsible for shell.
------- Additional Comments From juergen.schmied <at> debitel.net 2002-08-10 06:30
-------
Im not familiar with 16 bit programming. Please don't apply this bug to me.
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2002-08-10 06:54
-------
Well, ReactOS probably shouldn't compile this part anyway
(as it belongs to Win16 SHELL.DLL).
Or does NT also have a SHELL.DLL ?
Hmm, it probably does, so you do need to compile it.
In this case it sounds like KERNEL32.K32WOWGetVDMPointer() is what you want
instead...
--
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=872
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:23 -------
Bug comments restored from Gmane.org:
Wines dplayx imports the function ConvertToGlobalHandle from kernel32. This
function is a 9x export only and as such we cannot use dplayx on WindowsNT/2k or
ReactOS.
dllwrap --add-stdcall-alias --def dplayx.spec.def --implib libdplayx.a -o dplayx
.dll dpclassfactory.o dplay.o dplaysp.o dplayx_global.o dplayx_main.o dplayx_mes
sages.o dplobby.o lobbysp.o name_server.o dplayx.dll.dbg.o -L../../dlls -l
winmm -lole32 -luser32 -ladvapi32 -lkernel32 -L../../library -lwine -L../../ole
-lwine_uuid -lm
dplobby.o(.text+0x2538):dplobby.c: undefined reference to `ConvertToGlobalHandle
@4'
dplobby.o(.text+0x255c):dplobby.c: undefined reference to `ConvertToGlobalHandle
@4'
dplobby.o(.text+0x2580):dplobby.c: undefined reference to `ConvertToGlobalHandle
@4'
c:\mingw\bin\dllwrap.exe: c:\mingw\bin\gcc exited with status 1
make: *** [dplayx.dll] Error 1
--
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=871
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:22 -------
Bug comments restored from Gmane.org:
I'm trying to run a windows based application that uses oleDB to crate a
connection to an Access database, but I'm recieving error messages from my app.
"Active X Can't create the object" as I said, I'm using oleDB and JET libs to
connect, I used ODBC either but I can't still connect...
------- Additional Comments From marcus <at> jet.franken.de 2003-01-13 04:32 -------
please provide at least some debugging info. Can we download the app somewhere?
Do you have a
debuglog?
------- Additional Comments From dpaun <at> rogers.com 2003-03-30 22:58 -------
Closing.
--
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=870
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:20 -------
Bug comments restored from Gmane.org:
I created a temp directory and began extracting all of my CAB files to it so that I could
sort
them out and use them as native libraries under wine. I was using WinZip 8.1 under
wine to do
this. When the folder reached 1644 files, I began getting errors in both WinZip and
wine.
WinZip gave me CABINET.DLL errors, and wine gave me the following:
----------------------------------------------------------------------------------------------------------------------------
fixme:toolbar:TOOLBAR_CheckStyle [10026] TBSTYLE_ALTDRAG not implemented
fixme:toolbar:TOOLBAR_CheckStyle [10026] TBSTYLE_ALTDRAG not implemented
fixme:shell:SHGetFileInfoA set icon to shell size, stub
fixme:listview:LISTVIEW_SetColumnOrderArray iCount 9 lpiArray 0x405a689c
fixme:listview:LISTVIEW_UnsupportedStyles LVS_EDITLABELS
fixme:listview:LISTVIEW_UnsupportedStyles LVS_SHAREIMAGELISTS
fixme:shell:IPersistFile_fnSaveCompleted
(0x403c0bb4)->(L"C:\\windows\\Recent\\win95_16.cab.lnk")
fixme:file:DEVICE_Open Unknown/unsupported VxD VJOYD.VXD. Try setting
Windows
version to 'nt40' or 'win31'.
Warning: loading builtin winmm.dll, but native version already present. Expect trouble.
err:mmsys:MULTIMEDIA_GetIData IData not found for pid=0806cc58. Suicide !!!
----------------------------------------------------------------------------------------------------------------------------
--
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=869
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:18 -------
Bug comments restored from Gmane.org:
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
fixme:process:GetProcessWorkingSetSize (0xffffffff,0x40486bbc,0x40486bc0): stub
fixme:process:SetProcessWorkingSetSize (0xffffffff,33554432,33554432): stub -
harmless
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
fixme:process:GetProcessWorkingSetSize (0xffffffff,0x40486bbc,0x40486bc0): stub
fixme:process:SetProcessWorkingSetSize (0xffffffff,33554432,33554432): stub -
harmless
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-10
11:21 -------
*** This bug has been marked as a duplicate of 868 ***
------- Additional Comments From dpaun <at> rogers.com 2003-03-25 17:39 -------
Looks like it's ready to be CLOSED.
--
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=868
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:17 -------
Bug comments restored from Gmame.org:
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
fixme:process:GetProcessWorkingSetSize (0xffffffff,0x40486bbc,0x40486bc0): stub
fixme:process:SetProcessWorkingSetSize (0xffffffff,33554432,33554432): stub -
harmless
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
fixme:process:GetProcessWorkingSetSize (0xffffffff,0x40486bbc,0x40486bc0): stub
fixme:process:SetProcessWorkingSetSize (0xffffffff,33554432,33554432): stub -
harmless
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-10
11:21 -------
*** Bug 869 has been marked as a duplicate of this bug. ***
--
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=867
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:16 -------
Restored bug comments from Gmane.org:
Received these messages after compiling and runing wine on linux with Lotus
Notes 5.0.3. I get the err:clipping:CLIPPING_UpdateGCRegion message whenever
the mouse focus changes to Lotus Notes or when display information change (i.e
menu display changes from selecting outbox or changing to view the calender).
The fixme:process:GetProcessWorkingSetSize message appears so far at random.
root@enoch:~# uname -a
Linux enoch 2.4.18 #6 SMP Wed Apr 24 08:41:08 EDT 2002 i686 unknown
root@enoch:~# wine -v
Wine 20020605
Thanks for your help, love the software. Here is a total break down of events
when starting wine for Lotus Notes.
8:44enoch~/.wine> wine c:\\Lotus\\notes\\nlnotes.exe
fixme:console:SetConsoleCtrlHandler ((nil),0) - no error checking or testing yet
fixme:console:SetConsoleCtrlHandler (0x115bfe0,1) - no error checking or testing yet
fixme:ole:CoRegisterMessageFilter stub
ERROR: You need to merge the 'winedefault.reg' file into your
Wine registry by running: `regedit winedefault.reg'
fixme:ole:_LocalServerThread CoMarshalInterface failed, 80070057!
#####Now let's login to Lotus Notes
ERROR: You need to merge the 'winedefault.reg' file into your
Wine registry by running: `regedit winedefault.reg'
fixme:ole:_LocalServerThread CoMarshalInterface failed, 80070057!
ERROR: You need to merge the 'winedefault.reg' file into your
Wine registry by running: `regedit winedefault.reg'
fixme:ole:_LocalServerThread CoMarshalInterface failed, 80070057!
service "lotusnotes" protocol * not found; You might want to add this to
/etc/services
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report
this.fixme:console:SetConsoleCtrlHandler ((nil),0) - no error checking or
testing yet
fixme:console:SetConsoleCtrlHandler (0x115bfe0,1) - no error checking or testing yet
fixme:process:GetProcessWorkingSetSize (0xffffffff,0x40556bc4,0x40556bc8): stub
fixme:process:SetProcessWorkingSetSize (0xffffffff,33554432,33554432): stub -
harmless
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
######Now lets close Lotus Notes
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
fixme:ole:CoRegisterMessageFilter stub
fixme:console:SetConsoleCtrlHandler (0x115bfe0,0) - no error checking or testing yet
fixme:console:SetConsoleCtrlHandler ((nil),1) - no error checking or testing yet
fixme:console:SetConsoleCtrlHandler (0x115bfe0,0) - no error checking or testing yet
fixme:console:SetConsoleCtrlHandler ((nil),1) - no error checking or testing yet
err:clipping:CLIPPING_UpdateGCRegion DC is dirty. Please report this.
##### Once again thanks for all your help
------- Additional Comments From Speeddymon <at> yahoo.com 2002-11-30 15:05
-------
changing title and misc other categorical things, if you are having this
problem in Word: see bug #21
------- Additional Comments From Speeddymon <at> yahoo.com 2002-11-30 15:12
-------
removing dependency
--
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=865
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:12 -------
Bug comments restored from Gmane.org:
Tahoma font is not present
http://bugs.winehq.com/show_bug.cgi?id=865
Summary: The
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs <at> winehq.com
ReportedBy: traxtopel <at> hotpop.com
CVS 20020625 > 20020709+
gcc 2.95 compiled on debian woody against 2.4.19 pre2.
Non windows wine.
Running MS Office Word viewer(excel & pp also), on startup I get the error The
Tahoma font is not present.
I have a windows/fonts directory, containing the following ...
andalemo.ttf* ariblk.ttf* couri.ttf* georgiaz.ttf* times.ttf*
verdanab.ttf*
arialbd.ttf* comicbd.ttf* cour.ttf* impact.ttf* trebucbd.ttf*
verdanai.ttf*
arialbi.ttf* comic.ttf* georgiab.ttf* timesbd.ttf* trebucbi.ttf*
verdana.ttf*
ariali.ttf* courbd.ttf* georgiai.ttf* timesbi.ttf* trebucit.ttf*
verdanaz.ttf*
arial.ttf* courbi.ttf* georgia.ttf* timesi.ttf* trebuc.ttf*
webdings.ttf*
wine is compiled with freetype libs. If I reinstall the build of release
20020605 I compiled (on the same machine, no changes), problem does not occur.
Only with late June and July cvs builds. Has something changed in the last few
weeks?
------- Additional Comments From traxtopel <at> hotpop.com 2002-07-09 14:19 -------
Created an attachment (id=214)
--> (http://bugs.winehq.com/attachment.cgi?id=214&action=view)
mswordview debug
------- Additional Comments From traxtopel <at> hotpop.com 2002-07-14 15:34 -------
Reinstalled viewers, works
--
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=863
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:10 -------
Bugcomments restored from Gmane.org:
When drawing subItem text in LVS_REPORT style, if the text is longer than the
rectangle, only the right portion of the text displays. Using the native
controls, the left end of the text displays follow by "...".
How to cause:
1. Using notepad or other simple program, get the fileopen dialog.
2. Hit the "Details" icon (rightmost icon). Or right click in the box area and
select the "Details" view.
3. Adjust the header field length till not all the text can fit.
The native control uses lots of GetTextExtentPoint to find the amount of text
to fit with the ellipse. We could use DrawText like the Header control.
--
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=862
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:09 -------
Bug comments restored from Gmane.org:
Hello all,
Problem Description: Wine fails to load the default skin for Incredimail,.
Even if i change the Incredimail's default skintype, the binary fails to
start the mail-client.
--
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=861
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:08 -------
Bug comments restored from Gmane.org:
Hello all,.
Desription of the problem: Wine fails to start Yahoo! messenger when run
from Linux RH(7.2,clean install).
Error Displayed: CoCreateInstance for the MyYahoo DLL.
I guess i've configured the wine properly. I'm able to run
almost all MS-Office application without any hassles.
regards
-Ajey
--
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=860
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:07 -------
Bug comments restored from Gmane.org:
When starting trying to create a new database in Lotus Approach v9.5 program
terminates(no errors).
wine 20020605
Running on Mandrake 8.2
Wine compiled on debian wood gcc 2.95
No windows installed.
Smartsuite Millenium 9.5
/opt/wine/bin/wine -debugmsg +relay approach.exe
config includes
[AppDefaults\\approach.exe\\Debug]
"RelayExclude" =
"RtlEnterCriticalSection;RtlLeaveCriticalSection;RtlDeleteCriticalSection;RtlF
------- Additional Comments From traxtopel <at> hotpop.com 2002-07-07 09:09 -------
Created an attachment (id=209)
--> (http://bugs.winehq.com/attachment.cgi?id=209&action=view)
Lotus approach debug
--
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=859
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:06 -------
Bug comments restored from Gmane.org:
Using notes 5.10 running wine 20020605 (same problem in wine cvs 20020706).
Compiled with gcc 2.95 (debian woody)
Non windows wine install.
When trying to use the option DETACH ALL in Lotus notes to detach and save
multiple files, a file manager window appears for you to select a directory,
apoun selecting a dir, then clicking OK the files do not detach.
What information do I need to supply?
------- Additional Comments From apa3a <at> yahoo.com 2002-08-09 13:23 -------
Relay trace with parameters +file,+dosfs,+relay may help, but you may have
problems finding in the trace place where the detaching occurs.
You can get the relay trace with command like this:
wine --debugmsg +file,+dosfs,+relay <your app> &> 1.log
--
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=858
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:05 -------
Bug comments restored from Gmane.org:
Hello,
Since I updated my system, wine does not starts any more.
I'm using debian binary packages from http://gluck.debian.org/
Here's the latest log messages (this output is not related to the program run,
it's sol.exe here, but could have been anything)
wine -debugmsg +font sol.exe
trace:font:DumpFontList Family: L"Wingdings 3"
trace:font:DumpFontList L"Regular"
trace:font:WineEngCreateFontInstance L"System", h=16, it=0, weight=400,
PandF=22, charset=0 orient 0 escapement 0
trace:font:WineEngCreateFontInstance Choosen L"Arial" L"Regular"
trace:font:WineEngGetFontData font=0x40388c78, table=584d4456, offset=00000000,
buf=0x405c6b08, cbData=6
wine: Unhandled exception, starting debugger...
err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr
0x40287057
Running with gdb returns some useful informations:
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 1024 (LWP 27372)]
0x08458b00 in ?? ()
(gdb) bt
#0 0x08458b00 in ?? ()
#1 0x407370b9 in WineEngInit () from /usr/lib/libgdi32.dll.so
#2 0x40736eb0 in WineEngInit () from /usr/lib/libgdi32.dll.so
#3 0x40737b8b in WineEngCreateFontInstance () from /usr/lib/libgdi32.dll.so
#4 0x40724eb8 in CreateFontW () from /usr/lib/libgdi32.dll.so
#5 0x407294f0 in SelectObject () from /usr/lib/libgdi32.dll.so
#6 0x4071d3d9 in DC_InitDC () from /usr/lib/libgdi32.dll.so
#7 0x4071e0ca in CreateDCA () from /usr/lib/libgdi32.dll.so
#8 0x4065160b in SYSMETRICS_Init () from /usr/lib/wine/user32.dll.so
#9 0x4067ac2c in GetTabbedTextExtentW () from /usr/lib/wine/user32.dll.so
#10 0x4067ada5 in UserClientDllInitialize () from /usr/lib/wine/user32.dll.so
#11 0x4007c599 in PE_InitDLL () from /usr/lib/libntdll.dll.so
#12 0x40078d3b in MODULE_AllocModRef () from /usr/lib/libntdll.dll.so
#13 0x40078e59 in MODULE_DllProcessAttach () from /usr/lib/libntdll.dll.so
#14 0x40078e35 in MODULE_DllProcessAttach () from /usr/lib/libntdll.dll.so
#15 0x400b8cb0 in PROCESS_CallUserSignalProc () from /usr/lib/libntdll.dll.so
#16 0x400bccbd in SYSDEPS_SetCurThread () from /usr/lib/libntdll.dll.so
I think the problem could be related to freetype, from what I've seen in
WineEngInit(void)
If would have wanted to compile from sources, to get get a more precise
backtrace, but as the latest tarball is huge for a modem user, I did have not
tryed yet.
Just tell me if you need more info.
------- Additional Comments From apa3a <at> yahoo.com 2002-08-09 13:19 -------
Yes, WineEngInit function works with FreeType fonts.
To get more informative relay trace you can add relay channel, as:
wine -debugmsg +font,+relay sol.exe &> 1.log
Attach to the bug report 200 lines of the log before crash.
It is possible some fonts handling logic changes between the launches. I can
advise you to try to reconfigure Wine (generate new fake Windows directory and
config files in .wine directory). Backup your old configuration first. If that
works you can try to add back the applications and configuration from the backup.
Please report your progress.
------- Additional Comments From sylvain_pasche <at> yahoo.fr 2002-08-09 17:35
-------
Created an attachment (id=258)
--> (http://bugs.winehq.com/attachment.cgi?id=258&action=view)
log file
------- Additional Comments From sylvain_pasche <at> yahoo.fr 2002-08-09 17:37
-------
I tried to compile from source version 20020709, to have a more readable
backtrace, but I did not manage to reproduce the bug.
I would have tried to compile the 20020605, to identify this bug, but source
tarballs are a little big for my modem :-)
I've attached however a log file, but I mostly think this bug may be closed soon.
------- Additional Comments From julliard <at> winehq.com 2002-08-09 18:04 -------
Most likely this is caused by the fact that the recent freetype libraries (2.1.x)
have broken binary compatibility, so if your Wine was compiled against the
freetype 2.0.x headers it doesn't work. That's probably why it works when you
recompile from source.
--
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=854
------- Additional Comments From z_god(a)wanadoo.nl 2003-20-06 07:00 -------
Bug comments restored from Gmane.org:
Dear colleague,
When I compile wine I got the following message:
Note (probably harmless): No library found for -ldbm
/usr/bin/ld: cannot find -lgdbm
collect2: ld returned 1 exit status
make[2]: *** [winetest.exe.so] Error 1
make[2]: Leaving directory `/home/ignasi/wine-20020509/programs/winetest'
make[1]: *** [winetest] Error 2
make[1]: Leaving directory `/home/ignasi/wine-20020509/programs'
make: *** [programs] Error 2
Compilation failed, aborting install.
I use Debian Potato 2.2, with the following programs:
gcc 2.95.2 2
ld 2.9.5
wine-20020411 has compiled successfully on the same machine.
If you want or I missed some more info, please tell me.
Thanks a lot for all your effort.
All the very best,
Ignasi
------- Additional Comments From puoti <at> inwind.it 2002-07-04 14:10 -------
I had same problem on wine-20020605, version 20020509 works fine. Compiling on
Mandrake Linux 8.2 with all important updates done with MandrakeUpdate, gcc
3.0.4, glibc 2.2.4, Xfree86 4.2, Kde3, Amd3 processor (1007.025 Mhz), 128MB RAM,
all hardware working fine (Including openglide on nvidia card with nvidia
drivers); had same problem with cvs winex.
------- Additional Comments From marcus <at> jet.franken.de 2003-01-18 03:07 -------
you need to install the 'gdbm-devel' package, if it is on Mandrake.
Also please try again with a newer WINE version, it probably is fixed.
------- Additional Comments From dpaun <at> rogers.com 2003-03-30 23:14 -------
Closing.
------- Additional Comments From puoti <at> inwind.it 2003-03-31 06:14 -------
I never tried, on Mandrake 9 it all works perfectly.
--
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=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.
http://bugs.winehq.com/show_bug.cgi?id=1450
------- Additional Comments From mike(a)theoretic.com 2003-20-06 05:50 -------
The backtrace is unfortunately not useful, that exception is apparently normal
(it's trapped using SEH later in the code). You'd need to use "pass" to continue
to the real source of the problem.
--
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=1461
------- Additional Comments From mike(a)theoretic.com 2003-20-06 05:48 -------
Reporter, please could you resubmit details of this bug?
--
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=1345
------- Additional Comments From mike(a)theoretic.com 2003-20-06 05:48 -------
Reporter, can you please resubmit the info? Unfortunately bugzilla ate the
descriptions.
--
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=1531
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From mike(a)theoretic.com 2003-20-06 05:47 -------
Unfortunately this is more like a CANTFIX - waiting for vertical blank requires
kernel level support that currently does not exist, as far as I'm aware.
Certainly it'd be good if it did, simply for increased smoothness of XFree, but
this is not really a bug Wine can resolve.
If there is a kernel bugzilla bug about exposing vsync signals to user space
applications, this would depend on 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=1530
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-20-06 05:44 -------
Resolving invalid, this function is only useful for increasing efficiency on SMP
systems by avoiding a call to WaitForSingleObject. It makes no difference on
uniprocessor systems, and is useful only for locks that experience high levels
of contention.
If anything, I'd say this fixme should be turned into a comment. The amount of
spew it generates can be large, and I can't see it being implemented anytime
soon, there are too many more important things.
--
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=1533
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From mike(a)theoretic.com 2003-20-06 05:35 -------
Hi Ed, could you try this patch please?
--- olefont.c.old 2003-06-20 11:33:06.000000000 +0100
+++ olefont.c 2003-06-20 11:33:11.000000000 +0100
@@ -304,10 +304,11 @@
if (ppvObj==0)
return E_POINTER;
- *ppvObj = 0;
-
if (lpFontDesc == 0)
return NO_ERROR; /* MSDN Oct 2001 */
+
+ *ppvObj = 0;
+
/*
* Try to construct a new instance of the class.
Apply it with `patch -p0 </path/to/patch` in the wine/dlls/oleaut32 directory.
See if that fixes the problem.
--
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=1533
------- Additional Comments From marcus(a)jet.franken.de 2003-20-06 04:51 -------
can you run it again with --debugmsg +ole,+relay this time?
--
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=96
------- Additional Comments From marcus(a)jet.franken.de 2003-20-06 04:43 -------
partially true.
you sometimes cannot drop in windows dlls though, for instance
our ddraw.dll could not work with windows gdi.
but review might be possible and needed
--
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=15
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2003-20-06 04:37 -------
judging from last comment it is fixed, so why is the bug "reopened"?
--
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=1530
------- Additional Comments From marcus(a)jet.franken.de 2003-20-06 04:35 -------
this is not a bugreport?
what is broken?
these messages do not point to brokenness as is.
--
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=1532
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|fixme:win32:SetCriticalSecti|fixme:win32:SetCriticalSecti
|onSpinCount |onSpinCount
|critsection=0xa9165c0: |critsection=0xa9165c0:
|spincount=4000 not supported|spincount=4000 not
|fixme:win32:SetCriticalSecti|supportedfixme:win32:SetCrit
|onSpinCount |icalSectionSpinCount
|critsection=0xa9165e0: |critsection=0xa9165e0:
|spincount=100 not supported |spincount=100 not
|fixme:win32:SetCriticalSecti|supportedfixme:win32:SetCrit
|onSpinCount |icalSectionSpinCount
|critsection=0x412f00b0: |critsection=0x412f00b0:
Summary|spincount=4000 not supported|spincount=4000 not supported
------- Additional Comments From marcus(a)jet.franken.de 2003-20-06 04:34 -------
these are harmless and probably not root of the problem.
does xilinx 5.1 have a problem?
--
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=1533
------- Additional Comments From marcus(a)jet.franken.de 2003-20-06 04:30 -------
please rerun --debugmsg +relay and post the 200 lines before it starts the
debugger (or attach thge last 2000 lines bzipped)
--
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=1533
Summary: THREED20.OCX - Unhandled exception: page fault on read
access
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ed(a)centralmanclc.com
Trying to run a program used in primary schools that was written in Visual
Basic. The errors from the debugger are as follow:
fixme:ole:CoRegisterMessageFilter stub
fixme:ole:OleLoadPictureEx
(0x4168edec,782,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x408a2a68),
partially implemented.
fixme:win32:PE_CreateModule Security directory ignored
wine: Unhandled exception, starting debugger...
Wine already configured, run 'winesetup' to reconfigure.
WineDbg starting on pid 14
Loaded debug information from ELF 'wine' ((nil))
Breakpoint 1 at 0x4000bb50 (_end+0x400a3c4)
No debug information in ELF '/usr/lib/libntdll.dll.so' (0x40023000)
No debug information in ELF '/usr/lib/libwine.so.1' (0x40125000)
No debug information in ELF '/usr/lib/libwine_unicode.so.1' (0x4013d000)
No debug information in ELF '/lib/libc.so.6' (0x4021e000)
No debug information in ELF '/lib/libm.so.6' (0x40354000)
No debug information in ELF '/lib/libdl.so.2' (0x40376000)
No debug information in ELF '/lib/ld-linux.so.2' (0x40000000)
No debug information in ELF '/usr/lib/wine/kernel32.dll.so' (0x408b3000)
No debug information in ELF '/usr/lib/wine/user32.dll.so' (0x40975000)
No debug information in ELF '/usr/lib/wine/gdi32.dll.so' (0x40abc000)
No debug information in ELF '/usr/lib/wine/advapi32.dll.so' (0x40b40000)
No debug information in ELF '/usr/lib/wine/ole32.dll.so' (0x40b6f000)
No debug information in ELF '/usr/lib/wine/rpcrt4.dll.so' (0x40beb000)
No debug information in ELF '/usr/lib/wine/oleaut32.dll.so' (0x40c34000)
No debug information in ELF '/usr/lib/libungif.so.4' (0x40cb0000)
No debug information in ELF '/usr/lib/libjpeg.so.62' (0x40cb8000)
No debug information in ELF '/usr/X11R6/lib/libX11.so.6' (0x40cd7000)
No debug information in ELF '/usr/lib/libfreetype.so.6' (0x40da5000)
No debug information in ELF '/usr/lib/wine/x11drv.dll.so' (0x40df7000)
No debug information in ELF '/usr/X11R6/lib/libSM.so.6' (0x40e6b000)
No debug information in ELF '/usr/X11R6/lib/libICE.so.6' (0x40e74000)
No debug information in ELF '/usr/X11R6/lib/libXext.so.6' (0x40e8b000)
No debug information in ELF '/usr/lib/libGL.so.1' (0x40e9a000)
No debug information in ELF '/usr/X11R6/lib/libXmu.so.6' (0x41072000)
No debug information in ELF '/usr/X11R6/lib/libXi.so.6' (0x41088000)
No debug information in ELF '/usr/X11R6/lib/libXt.so.6' (0x41090000)
No debug information in ELF '/usr/X11R6/lib/libXcursor.so.1' (0x410e4000)
No debug information in ELF '/usr/X11R6/lib/libXrender.so.1' (0x410ed000)
No debug information in ELF '/usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2'
(0x40015000)
No debug information in ELF '/usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2'
(0x41150000)
No debug information in ELF '/usr/lib/gconv/ISO8859-1.so' (0x4001f000)
No debug information in ELF '/usr/lib/wine/olepro32.dll.so' (0x418f4000)
No debug information in ELF '/usr/lib/wine/winmm.dll.so' (0x41908000)
No debug information in ELF '/usr/lib/wine/msvcrt.dll.so' (0x41976000)
No debug information in ELF '/usr/lib/wine/wineoss.drv.so' (0x419be000)
No debug information in ELF '/usr/lib/wine/msacm.drv.so' (0x41a01000)
No debug information in ELF '/usr/lib/wine/msacm32.dll.so' (0x41a19000)
No debug information in ELF '/usr/lib/wine/midimap.drv.so' (0x41b50000)
No debug information in 32bit DLL 'Y:\winroot\Program Files\Edutech\Primary
Classroom\Primary Word\Primary Word.exe' (0x400000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NTDLL.DLL' (0x40050000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\KERNEL32.DLL' (0x408e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x40b50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40ad0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x409a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x40c00000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40b90000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLEAUT32.DLL' (0x40c50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVBVM60.DLL' (0x66000000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40e10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLEPRO32.DLL' (0x41900000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL' (0x41920000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVCRT.DLL' (0x41990000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\THREED20.OCX' (0x24100000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV' (0x419d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL' (0x41a20000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV' (0x41a10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV' (0x41b60000)
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x241088e9).
In 32-bit mode.
0x241088e9 (THREED20.OCX..text+0x78e9 in C:\WINDOWS\SYSTEM\THREED20.OCX): movl
0x0(%ecx),%eax
Wine-dbg>c
First chance exception: page fault on read access to 0x00000000 in 32-bit code
(0x241088e9).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:008f GS:0000
EIP:241088e9 ESP:408a2838 EBP:408a2868 EFLAGS:00010246( R- 00 I Z- -P1 )
EAX:408a2860 EBX:00000000 ECX:00000000 EDX:408a285c
ESI:403b1b18 EDI:403b1c2b
Stack dump:
0x408a2838 (MSVCRT.DLL.sqrt+0x544d68): 24136370 408a2860 4168edec 403b1b18
0x408a2848 (MSVCRT.DLL.sqrt+0x544d78): 4168f82c 4168edec 408a2890 00000004
0x408a2858 (MSVCRT.DLL.sqrt+0x544d88): 00000000 00000000 403b1b18 00000000
0x408a2868 (MSVCRT.DLL.sqrt+0x544d98): 408a2910 2410178c 403b1b18 4168edec
0x408a2878 (MSVCRT.DLL.sqrt+0x544da8): 408a2910 403b1b18 4168edec 4168f82c
0x408a2888 (MSVCRT.DLL.sqrt+0x544db8): 241155f2 403b1b18 4168edec 403b1b18
0x408a2898 (MSVCRT.DLL.sqrt+0x544dc8):
0011: sel=008f base=4011c4e0 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x241088e9 (THREED20.OCX..text+0x78e9 in C:\WINDOWS\SYSTEM\THREED20.OCX)
(ebp=408a2868)
1 0x2410178c (THREED20.OCX..text+0x78c in C:\WINDOWS\SYSTEM\THREED20.OCX)
(ebp=408a2910)
2 0x660690d2 (MSVBVM60.DLL.EVENT_SINK_AddRef+0x5a86 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a29a0)
3 0x66069c62 (MSVBVM60.DLL.EVENT_SINK_AddRef+0x6616 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2a04)
4 0x6605a6a0 (MSVBVM60.DLL.__vbaStrI4+0x3328 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2a14)
5 0x660661ad (MSVBVM60.DLL.EVENT_SINK_AddRef+0x2b61 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2a4c)
6 0x66065e0a (MSVBVM60.DLL.EVENT_SINK_AddRef+0x27be in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2a78)
7 0x66065d07 (MSVBVM60.DLL.EVENT_SINK_AddRef+0x26bb in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2aa0)
8 0x66065d69 (MSVBVM60.DLL.EVENT_SINK_AddRef+0x271d in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2ad0)
9 0x66065d69 (MSVBVM60.DLL.EVENT_SINK_AddRef+0x271d in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2b00)
10 0x660670db (MSVBVM60.DLL.EVENT_SINK_AddRef+0x3a8f in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2b38)
11 0x66066c2e (MSVBVM60.DLL.EVENT_SINK_AddRef+0x35e2 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2b98)
12 0x66066b45 (MSVBVM60.DLL.EVENT_SINK_AddRef+0x34f9 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2bb8)
13 0x66066ad9 (MSVBVM60.DLL.EVENT_SINK_AddRef+0x348d in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2c10)
14 0x6601997e (MSVBVM60.DLL.TipCreateInstanceEx+0x1ce in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2c4c)
15 0x660182f9 (MSVBVM60.DLL.EbLoadRunTime+0x923 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2d9c)
16 0x6601684a (MSVBVM60.DLL.EbSetContextWorkerThread+0xd39 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2db8)
17 0x66024502 (MSVBVM60.DLL.ThunRTMain+0x3f4 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2dd8)
18 0x66024263 (MSVBVM60.DLL.ThunRTMain+0x155 in
C:\WINDOWS\SYSTEM\MSVBVM60.DLL) (ebp=408a2df8)
19 0x66024169 (MSVBVM60.DLL.ThunRTMain+0x5b in C:\WINDOWS\SYSTEM\MSVBVM60.DLL)
(ebp=408a2e78)
20 0x0040146a (Primary Word.exe.EntryPoint+0xa in Y:\winroot\Program
Files\Edutech\Primary Classroom\Primary Word\Primary Word.exe) (ebp=408a2f28)
21 0x400bc5d8 (KERNEL32.DLL.WaitForMultipleObjectsEx+0x2b8 in libntdll.dll.so)
(ebp=408a2ff4)
22 0x400bc774 (KERNEL32.DLL.WaitForMultipleObjectsEx+0x454 in libntdll.dll.so)
(ebp=00000000)
0x241088e9 (THREED20.OCX..text+0x78e9 in C:\WINDOWS\SYSTEM\THREED20.OCX): movl
0x0(%ecx),%eax
Wine-dbg>
--
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=1522
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Ever Confirmed| |1
------- Additional Comments From marcus(a)jet.franken.de 2003-20-06 02:45 -------
i submitted a patch to alexandre fixing this problem.
--
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=1532
Summary: fixme:win32:SetCriticalSectionSpinCount
critsection=0xa9165c0: spincount=4000 not supported
fixme:win32:SetCriticalSectionSpinCount
critsection=0xa9165e0: spincount=100 not supported
fixme:win32:SetCriticalSectionSpinCount
critsection=0x412f00b0: spincount=4000 not supported
Product: Wine
Version: 20030618
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: john_vms(a)hotmail.com
The following fixme message is generate by wine20030618 and xilinx 5.1 tools
command : wine pace.exe
fixme:win32:SetCriticalSectionSpinCount critsection=0x416300b0: spincount=4000
not supported
fixme:win32:SetCriticalSectionSpinCount critsection=0x416f00b0: spincount=4000
not supported
fixme:win32:SetCriticalSectionSpinCount critsection=0x418200b0: spincount=4000
not supported
fixme:win32:SetCriticalSectionSpinCount critsection=0xa9165c0: spincount=4000
not supported
fixme:win32:SetCriticalSectionSpinCount critsection=0xa9165e0: spincount=100 not
supported
fixme:win32:SetCriticalSectionSpinCount critsection=0x412f00b0: spincount=4000
not supported
--
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=1332
------- Additional Comments From 7ownq0k402(a)sneakemail.com 2003-19-06 18:18 -------
You havent's said what was wrong with Fireworks4.
If there's nothing wrong with the way it's behaving, then
the messages are nothing to worry about.
--
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=1332
------- Additional Comments From 7ownq0k402(a)sneakemail.com 2003-19-06 18:08 -------
***** Bug description recovered from news.gmane.org *********
http://bugs.winehq.com/show_bug.cgi?id=1332
Summary: Problem with WINTAB32.DLL
Product: Wine
Version: 20030318
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: lord_of_destiny(a)centrum.cz
I installed Fireworks 4 succesfully,
but after running 'wine "Fireworks 4.exe"' it makes this Errors :
trace:loaddll:MODULE_LoadLibraryExA Loaded module
'C:\WINDOWS\SYSTEM\WINTAB32.DLL' : builtin
fixme:wintab32:WTInfoA (200, 9, 0xc55c70): stub
fixme:wintab32:WTInfoA (200, 7, 0x406b0f04): stub
fixme:wintab32:WTGetA ((nil), 0x406b0f24): stub
fixme:wintab32:WTInfoA (1080758468, 15, 0x406b0ef4): stub
fixme:wintab32:WTInfoA (200, 10, 0x406b0eec): stub
fixme:wintab32:WTInfoA (4, 0, 0x406b0f24): stub
fixme:wintab32:WTOpenA (0x10023, 0x406b0f24, 1): stub
fixme:accel:CreateAcceleratorTableA should check that the accelerator
descriptions are valid, return NULL and SetLastError() if not.
fixme:accel:CreateAcceleratorTableA should check that the accelerator
descriptions are valid, return NULL and SetLastError() if not.
and for example Flash 5 runs correctly.
--
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=1461
jnewman(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|jnewman(a)codeweavers.com |wine-bugs(a)winehq.com
Component|website-bugs |wine-misc
Product|WineHQ Apps Database |Wine
------- Additional Comments From jnewman(a)codeweavers.com 2003-19-06 17:24 -------
moving to Wine bugs. Not a website bug.
--
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=1345
jnewman(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|jnewman(a)codeweavers.com |wine-bugs(a)winehq.com
--
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=1531
Summary: fixme:ddraw when running Master of Orion 2
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P4
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: bunk(a)fs.tum.de
This is a resubmission of Bug 1154.
Master of Orion 2 runs fine woth Wine versions up to 20030618, but there are
always the following messages:
<-- snip -->
$ wine orion95.exe
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x40390778)->(00010021,00000011)
fixme:x11drv:X11DRV_DDHAL_CreatePalette stub
fixme:ddraw:Main_DirectDraw_WaitForVerticalBlank
(0x40390778)->(flags=0x00000001,handle=(nil))
fixme:ddraw:Main_DirectDraw_WaitForVerticalBlank
(0x40390778)->(flags=0x00000001,handle=(nil))
fixme:ddraw:Main_DirectDraw_WaitForVerticalBlank
(0x40390778)->(flags=0x00000001,handle=(nil))
fixme:ddraw:Main_DirectDraw_WaitForVerticalBlank
(0x40390778)->(flags=0x00000001,handle=(nil))
fixme:ddraw:Main_DirectDraw_WaitForVerticalBlank
(0x40390778)->(flags=0x00000001,handle=(nil))
...
<-- snip -->
Since the game runs without problems, this is at least for this program only a
cosmetical issue.
--
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=1524
us(a)the-edmeades.demon.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |us(a)the-edmeades.demon.co.uk
--
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=1438
------- Additional Comments From hatky(a)users.sf.net 2003-19-06 04:41 -------
zdzichu <at> irc.pl
Trying to install Half-life with freshly compiled & installed wine:
root@mother:/mnt/cdrom$ wine SETUP.EXE
err:module:BUILTIN_LoadModule loaded .so but dll mmsystem.dll still not found
Could not load 'KERNEL.DLL' required by 'ISSET_SE', error=2
Most other programs work OK (Counter Strike installed themself, Half-Life
upgraded has run, although it complained about missing HalfLife).
Clearly KERNEL.DLL is not emulated properly.
---
restored from gmane.org
--
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=1450
------- Additional Comments From hatky(a)users.sf.net 2003-19-06 04:37 -------
tjawatts <at> totalise.co.uk
I have CVS as of yesterday (08/05/03, in the afternoon), I have (customised)
linux with glibc 2.3.2, so I added --with-nptl to the config args bit in
wineinstall. X 4.3.0. Other programs run fine (acrobat,kazaa lite). Fake windows
on ext3.
Simcity installs fine (cd /mnt/cdrom, wine ./INSTALL/ENGLISH/SETUP.EXE). When I
run it (cd <wine>/Program\ Files/Maxis/SimCity\ 3000/, wine ./Game/SC3.EXE) I
get a loop with a load of enter/leave critical section plus a few get tick
counts ad infinitum. So I will attach the last few hundred +relay +snoop before
the loop, a +loaddll and some output from winedbg which seems to show a crash
(why when it doesnt if I it run normally?)
Hope you can help
Thanks
Tony
p.s. posted under misc as I have no idea what it is related too!
------- Additional Comments From tjawatts <at> totalise.co.uk 2003-05-09
04:44 -------
Created an attachment (id=476)
--> (http://bugs.winehq.com/attachment.cgi?id=476&action=view)
wine --debugmsg +snoop +relay ./Game/SC3.EXE
------- Additional Comments From tjawatts <at> totalise.co.uk 2003-05-09
04:45 -------
Created an attachment (id=477)
--> (http://bugs.winehq.com/attachment.cgi?id=477&action=view)
wine --debugmsg +loaddll ./Game/SC3.EXE
------- Additional Comments From tjawatts <at> totalise.co.uk 2003-05-09
04:45 -------
Created an attachment (id=478)
--> (http://bugs.winehq.com/attachment.cgi?id=478&action=view)
winedbg ./Game/SC3.EXE
------- Additional Comments From tjawatts <at> totalise.co.uk 2003-05-09
07:07 -------
OK, just looking at the snoop relay and could it be something to do with the
setthreadpriority, i.e. it is set to be at the bottom of the queue or something?
Any ideas?
Tony
0033:Call kernel32.GetThreadPriority(fffffffe) ret=004c03cd
0033:Ret kernel32.GetThreadPriority() retval=00000000 ret=004c03cd
0033:Call kernel32.SetThreadPriority(fffffffe,00000001) ret=004c03e4
0033:Ret kernel32.SetThreadPriority() retval=00000001 ret=004c03e4
------- Additional Comments From mike <at> theoretic.com 2003-05-09 09:35 -----
--
Can you get a backtrace from the critical section functions in the loop?
------- Additional Comments From tjawatts <at> totalise.co.uk 2003-05-09
10:15 -------
If you give me an idea how, with winedbg it gives the exception attached, could
I use gdb or something?
Thanks
Tony
------- Additional Comments From tjawatts <at> totalise.co.uk 2003-05-09
10:54 -------
Here is the backtrace from gdb, any use?
Starting program: /usr/bin/wine ./Game/SC3.EXE
[New Thread 16384 (LWP 18064)]
[New Thread 32769 (LWP 18067)]
[New Thread 16386 (LWP 18068)]
[New Thread 32771 (LWP 18077)]
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 16384 (LWP 18064)]
RtlImageNtHeader (hModule=0x0) at loader.c:1273
1273 if (dos->e_magic == IMAGE_DOS_SIGNATURE)
(gdb) bt
#0 RtlImageNtHeader (hModule=0x0) at loader.c:1273
#1 0x400d231a in RtlImageDirectoryEntryToData (module=0x0, image=1, dir=0,
size=0x40702d84) at loader.c:1301
#2 0x400d12f4 in LdrGetProcedureAddress (module=0x0, name=0x40702db0, ord=0,
address=0x40702dac) at loader.c:787
#3 0x40087454 in GetProcAddress (hModule=0x0,
function=0x4fc298 "TryEnterCriticalSection") at ../../loader/module.c:1053
#4 0x004b9082 in ?? ()
#5 0x400bd984 in start_process () at ../../scheduler/process.c:570
#6 0x400bf4d7 in call_on_thread_stack (func=0x400bd6b0)
at ../../scheduler/sysdeps.c:110
----
restored from gmane.org
--
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=1434
------- Additional Comments From hatky(a)users.sf.net 2003-19-06 04:14 -------
Restoring from gmane.org:
hatky <at> users.sf.net:
Just using this meta bug to order the bug tree a bit
other developer separate dll's and change directory stracture for the source
code
for now I order bugs... :)
--
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=1530
Summary: FIXME:heap:RtlWalkHeap not fully compatible
Product: Wine
Version: 20030508
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: john_vms(a)hotmail.com
fixme:win32:SetCriticalSectionSpinCount critsection=0x416f00b0: spincount=4000
not supported
fixme:win32:SetCriticalSectionSpinCount critsection=0x417b00b0: spincount=4000
not supported
--
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=1527
------- Additional Comments From syjef(a)mdanderson.org 2003-18-06 14:48 -------
I am receiving the same things from current CVS. This is on FreeBSD 5.1-RELEASE
with XFree86 4.3.0. In my case, the font metrics are failing at:
Font metrics: 99.5% done
Font -b&h-lucidasans-bold-i-normal-sans-100-*-100-100-p-0-iso8859-1
wine: Unhandled exception, starting debugger...
Furthermore, any attempt to use the debugger fails with:
wait4: Interrupted system call
Regardless of if I try to step through a few lines or I just type quit at the prompt. At the
end of attempting to load debug symbols I receive the following for this particular (font)
error:
In 32-bit mode.
file_set_error: Bad address
I have not previously had any problems building font metrics, and I have not (to my
knowledge) loaded any fonts since the last successful build.
--
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=1527
------- Additional Comments From william.gallafent(a)virgin.net 2003-18-06 09:49 -------
Well, for what it's worth, here's the backtrace after the crash when run Synchronously. I don't
have libX11 with debug symbols, so I can't see what's happening inside that library. The font
name still looks OK at this point, but I can't look inside the Display*.
Font metrics: 97.9% done
Font -misc-esstix eight-medium-r-normal--100-*-100-100-p-0-adobe-fontspecific
Program received signal SIGTRAP, Trace/breakpoint trap.
[Switching to Thread 16384 (LWP 6922)]
DebugBreak () at debugger.c:273
273 }
(gdb) bt
#0 DebugBreak () at debugger.c:273
#1 0x40f068d5 in error_handler (display=0x3c00e400, error_evt=0x408c266c) at
x11drv_main.c:143
#2 0x40f8288e in _XError () from /usr/X11R6/lib/libX11.so.6
#3 0x40f80dad in _XReply () from /usr/X11R6/lib/libX11.so.6
#4 0x40f63d93 in _XF86BigfontQueryFont () from /usr/X11R6/lib/libX11.so.6
#5 0x40f6343f in XLoadQueryFont () from /usr/X11R6/lib/libX11.so.6
#6 0x40efdd13 in TSXLoadQueryFont (a0=0x3c00e400,
a1=0x408c2960 "-misc-esstix
eight-medium-r-normal--100-*-100-100-p-0-adobe-fontspecific") at ts_xlib.c:20
#7 0x40ef0fcd in XFONT_BuildMetrics (x_pattern=0x3c01b1e0, res=100,
x_checksum=4208893235, x_count=6291)
at ../../graphics/x11drv/xfont.c:2120
#8 0x40ef2e7e in X11DRV_FONT_InitX11Metrics () at ../../graphics/x11drv/xfont.c:2959
#9 0x40ef3b80 in X11DRV_SelectFont (physDev=0x40393718, hfont=0xa2) at
../../graphics/x11drv/xfont.c:3339
#10 0x40c8f3ba in FONT_SelectObject (handle=0xa2, obj=0x4037312e, hdc=0x4c) at
../../objects/font.c:435
#11 0x40c95638 in SelectObject (hdc=0x4c, handle=0xa2) at ../../objects/gdiobj.c:1074
#12 0x40c87878 in DC_InitDC (dc=0x403949e8) at ../../objects/dc.c:194
#13 0x40c88607 in CreateDCA (driver=0x40bedc04 "DISPLAY", device=0x0, output=0x0,
initData=0x0) at ../../objects/dc.c:616
#14 0x40bab707 in SYSMETRICS_Init () at ../../windows/sysmetrics.c:118
#15 0x40bd9b75 in process_attach () at user_main.c:233
#16 0x40bd9d05 in UserClientDllInitialize (inst=0x40b50000, reason=1, reserved=0x1) at
user_main.c:325
#17 0x400c5399 in MODULE_InitDLL (wm=0x40372180, reason=1, lpReserved=0x1) at
loader.c:451
#18 0x400c5598 in MODULE_DllProcessAttach (wm=0x40372180, lpReserved=0x1) at
loader.c:528
#19 0x400c5578 in MODULE_DllProcessAttach (wm=0x40371a08, lpReserved=0x1) at
loader.c:521
#20 0x400c5578 in MODULE_DllProcessAttach (wm=0x403709a8, lpReserved=0x1) at
loader.c:521
#21 0x400c5578 in MODULE_DllProcessAttach (wm=0x40370670, lpReserved=0x1) at
loader.c:521
#22 0x400c5578 in MODULE_DllProcessAttach (wm=0x0, lpReserved=0x1) at loader.c:521
#23 0x400b1cac in start_process () at ../../scheduler/process.c:546
#24 0x400b6207 in call_on_thread_stack (func=0x400b1ae0) at
../../scheduler/sysdeps.c:113
(gdb) up 6
#6 0x40efdd13 in TSXLoadQueryFont (a0=0x3c00e400,
a1=0x408c2960 "-misc-esstix
eight-medium-r-normal--100-*-100-100-p-0-adobe-fontspecific") at ts_xlib.c:20
20 r = XLoadQueryFont(a0, a1);
(gdb) list
15
16 XFontStruct * TSXLoadQueryFont(Display* a0, const char* a1)
17 {
18 XFontStruct * r;
19 wine_tsx11_lock();
20 r = XLoadQueryFont(a0, a1);
21 wine_tsx11_unlock();
22 return r;
23 }
24
(gdb) p a0
$5 = (Display *) 0x3c00e400
(gdb) p a1
$6 = 0x408c2960 "-misc-esstix
eight-medium-r-normal--100-*-100-100-p-0-adobe-fontspecific"
--
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=1219
------- Additional Comments From z_god(a)wanadoo.nl 2003-18-06 06:26 -------
Bug comments restored from Gmane.org:
Running wine version 20021219 and after testing the configuration to 100% with
winecheck:
Running the game "First Star Online' client (latest version - see
http://www.kidmandevil.com) directSound give the following
messages and locks up
the app when attempting to load a game Character.
fixme:msvcrt:MSVCRT__sopen : pmode 0x0001 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel
(0x465b9c80)->(00000000,00000008)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel
(0x465be5a0)->(00000000,00000008)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel
(0x464a0150)->(00000000,00000008)
fixme:font:GetKerningPairsA (0xa14,0,(nil)): almost empty stub!
fixme:font:GetKerningPairsA (0xa14,0,(nil)): almost empty stub!
fixme:gdi:GetCharABCWidthsFloatA GetCharABCWidthsFloatA, stub
fixme:font:GetKerningPairsA (0xa68,0,(nil)): almost empty stub!
fixme:gdi:GetCharABCWidthsFloatA GetCharABCWidthsFloatA, stub
fixme:gdi:GetCharABCWidthsFloatA GetCharABCWidthsFloatA, stub
fixme:gdi:GetCharABCWidthsFloatA GetCharABCWidthsFloatA, stub
fixme:font:GetKerningPairsA (0xa70,0,(nil)): almost empty stub!
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel (0x494ddf38,00010022,2):stub
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:msvcrt:MSVCRT__sopen : pmode 0x0180 ignored
fixme:winsock:WS_bind Setting WS_SO_REUSEADDR on socket before we binding it
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=22248 <
primary_done=24876)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=22236 <
primary_done=24864)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=22232 <
primary_done=24860)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=18668 <
primary_done=21296)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=18656 <
primary_done=21284)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=15448 <
primary_done=18076)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=11792 <
primary_done=14420)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=11780 <
primary_done=14408)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=11776 <
primary_done=14404)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=8392 <
primary_done=11020)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=4312 <
primary_done=6940)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=4300 <
primary_done=6928)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=4296 <
primary_done=6924)
------- Additional Comments From info <at> moabutah.com 2003-01-10 22:10 -------
I managed to get the last few error messages to stop by changing the winmm driver to
the winealsa.drv
driver (duh) but everything before and including the: fixme:winsock:WS_bind Setting
WS_SO_REUSEADDR
on socket before we binding it still occurs and the prog still crashes.
------- Additional Comments From dardo <at> dada.it 2003-05-07 12:34 -------
fixme:winsock:WS_bind Setting WS_SO_REUSEADDR on socket before we binding it
I have the same problem with WinMX 3.3.1. and Wine 20030115 on Mandrake 9.1
--
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=1527
------- Additional Comments From mike(a)theoretic.com 2003-18-06 06:02 -------
If you set Synchronous on in the config file, X errors will raise an exception
that you can get a backtrace from, perhaps revealing the incorrect value.
Sounds like it might be a strange font file....
--
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=1527
------- Additional Comments From william.gallafent(a)virgin.net 2003-18-06 04:42 -------
fixme:font:LFD_InitFontInfo font '-b&h-luxi
serif-medium-o-normal--0-0-0-0-p-0-adobe-standard' has unknown registry 'adobe' and
character encoding 'standard'
Font metrics: 98.9% done
fixme:font:LFD_InitFontInfo font '-b&h-luxi
serif-medium-r-normal--0-0-0-0-p-0-adobe-standard' has unknown registry 'adobe' and
character encoding 'standard'
Font metrics: 99.1% done
Font -misc-esstix eight-medium-r-normal--100-*-100-100-p-0-adobe-fontspecific
X Error of failed request: BadValue (integer parameter out of range for operation)
Major opcode of failed request: 45 (X_OpenFont)
Value in failed request: 0x2c00fcd
Serial number of failed request: 12307
Current serial number in output stream: 12308
This font name ooks OK to me, as someone who knows almost nothing about X11 fonts ...
--
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=1387
simon(a)unisolve.com.au changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From simon(a)unisolve.com.au 2003-17-06 22:57 -------
*Delighted* to discover that when I updated my wine from cvs (a week or two ago)
that this bug had resolved itself. I can install the application, (with a few
rough edges during the installation process), and now it runs reasonably well.
Great progress. Thanks wine developers.
--
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=1527
------- Additional Comments From dclark(a)akamail.com 2003-17-06 18:15 -------
Why not add, just before that, something like:
MESSAGE("Font %s\n", lpstr);
to see what the font string looks like.
--
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=1527
william.gallafent(a)virgin.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |major
------- Additional Comments From william.gallafent(a)virgin.net 2003-17-06 16:14 -------
The crash seems to occur at about line 2120 of graphics/x11drv/xfont.c, as far as I can tell.
LFD_UnParse(buffer, sizeof buffer, &lfd1);
lpstr = buffer;
}
else lpstr = x_pattern[i];
// CRASH HERE.
if( (x_fs = TSXLoadQueryFont(gdi_display, lpstr)) )
{
XFONT_SetFontMetric( fi, fr, x_fs );
TSXFreeFont( gdi_display, x_fs );
XFONT_FixupPointSize(fi);
I've raised the priority a notch since this prevents me from running anything under WINE at all.
I thought about changing it to 'Blocker' but that seems a bit aggressive.
--
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=1528
Summary: wineps printing to lpr issues
Product: Wine
Version: 20030508
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ktaylor(a)daac.gsfc.nasa.gov
I'm trying to follow the documentation and usenet advisings as closely as
possible to figure out why I'm unable to print through lpr (to multiple devices).
As the test program I'm using Powerpoint 97, and I stuck this line into
dlls/wineps/init.c:
line 274:
MESSAGE("DRIVER:
%s\tDEVICE:%s\tOUTPUT:%s\tINITDATA:%s\n",driver,device,output,initData);
I wanted to see how the device was being set during the program run (without
trying to find it in the trace output.
DRIVER: WINEPS DEVICE:gcdcpr8 OUTPUT:LPT1: INITDATA:(null)
DRIVER: WINEPS DEVICE:gcdcpr8 OUTPUT:LPT1: INITDATA:(null)
DRIVER: WINEPS DEVICE:gcdcpr8 OUTPUT:LPR:gcdcpr8 INITDATA:(null)
fixme:psdrv:PSDRV_DeviceCapabilities DC_TRUETYPE: stub
DRIVER: WINEPS DEVICE:gcdcpr8 OUTPUT:(null) INITDATA:gcdcpr8
DRIVER: WINEPS DEVICE:gcdcpr8 OUTPUT:(null) INITDATA:gcdcpr8
DRIVER: WINEPS DEVICE:gcdcpr8 OUTPUT:(null) INITDATA:gcdcpr8
For some reason it starts out being set to LPT1, which it shouldn't be....but
after a couple of events, it sets itself to LPR:gcdcpr8, which if the wine
backend is right, should send it to the printcap queue gcdcpr8. Then after some
more events, the value of OUTPUT gets wiped out, and I believe the default
action is to send the job to LPT1, which is the wrong place.
If there's more debugging stuff you'd like me to give you, let me know, and I
can try and provide 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=1527
------- Additional Comments From william.gallafent(a)virgin.net 2003-17-06 10:25 -------
Sorry, forgot to mention that this is on a mostly vanilla SuSE 8.3 machine running on a dual
Athlon MP 1.6 / Tyan S2460 with Radeon 9000 Graphics, XFree86 4.3.99.4, 512MB RAM. The
problem occurs both with the version supplied with SuSE 8.3, and that I compiled myself from
the latest snapshot. Both worked OK before I installed the new fonts. No other applications
have been complaining.
--
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=1527
Summary: Crash at startup with font metric building problem
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: william.gallafent(a)virgin.net
Since I installed some new fonts for KFormula(ftp://ftp.elsevier.nl/pub/styles/esstix/esstix.zip),
wine has failed to start up for any application. The usual "Font metrics: xx.x% done" scroll by
for a while, with the usual fixmes for some fonts, but it does not complete. The last few lines
of output are:
fixme:font:LFD_InitFontInfo font '-b&h-luxi serif-bold-o-normal--0-0-0-0-p-0-adobe-standard'
has unknown registry 'adobe' and character encoding 'standard'
Font metrics: 98.4% done
fixme:font:LFD_InitFontInfo font '-b&h-luxi serif-bold-r-normal--0-0-0-0-p-0-adobe-standard'
has unknown registry 'adobe' and character encoding 'standard'
Font metrics: 98.6% done
fixme:font:LFD_InitFontInfo font '-b&h-luxi serif-medium-i-normal--0-0-0-0-p-0-adobe-standard'
has unknown registry 'adobe' and character encoding 'standard'
Font metrics: 98.7% done
fixme:font:LFD_InitFontInfo font '-b&h-luxi
serif-medium-o-normal--0-0-0-0-p-0-adobe-standard' has unknown registry 'adobe' and
character encoding 'standard'
Font metrics: 98.9% done
fixme:font:LFD_InitFontInfo font '-b&h-luxi
serif-medium-r-normal--0-0-0-0-p-0-adobe-standard' has unknown registry 'adobe' and
character encoding 'standard'
Font metrics: 99.1% done
X Error of failed request: BadValue (integer parameter out of range for operation)
Major opcode of failed request: 45 (X_OpenFont)
Value in failed request: 0x600fcd
Serial number of failed request: 12307
Current serial number in output stream: 12308
Let me know if more information's required (and how to get it, if non-trivial!)
--
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=1523
ekantola(a)welho.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://www.hut.fi/~ekantola/|
|wine/tools/wineshelllink |
--
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=1523
ekantola(a)welho.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|wineshelllink crashes under |wineshelllink complains
|Debian when run as a normal |under Debian when run as a
|user |normal user
--
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=568
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-17-06 02:13 -------
closing.
--
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=568
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-17-06 02:13 -------
setting to resolved fixed after one year of inactivity.
--
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=1040
------- Additional Comments From spetreolle(a)yahoo.fr 2003-17-06 02:07 -------
josh or Jeff Moore,
could you reenter some details for this bug ?
--
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=1328
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-17-06 02:06 -------
closing.
--
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=1434
Bug 1434 depends on bug 1328, which changed state.
Bug 1328 Summary: Error Message (201) Dark Age of Camelot
http://bugs.winehq.com/show_bug.cgi?id=1328
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
--
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=1328
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From spetreolle(a)yahoo.fr 2003-17-06 02:04 -------
Since the details were deleted by BugZilla update, resolving it as a dup of bug
1040.
*** This bug has been marked as a duplicate of 1040 ***
--
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=1040
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |josolson(a)nmu.edu
------- Additional Comments From spetreolle(a)yahoo.fr 2003-17-06 02:04 -------
*** Bug 1328 has been marked as a duplicate of this bug. ***
--
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=1328
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |1434
nThis| |
--
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=456
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Try running a Tribes 1 |Try running a Tribes 1
|Server in wine resolves into|Server in wine resolves into
|"fixme:winsock:_get_sock_fd |"fixme:winsock:_get_sock_fd
|handle 0 is set a socket" |handle 0 is not a socket"
|error |error
--
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=351
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-17-06 01:45 -------
closing.
--
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=1434
Bug 1434 depends on bug 351, which changed state.
Bug 351 Summary: TNM (wrestling simulator) installer crashes with "Program too big" message
http://bugs.winehq.com/show_bug.cgi?id=351
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
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=351
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-17-06 01:45 -------
setting to resolved fixed after one year of inactivity.
--
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=259
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
------- Additional Comments From spetreolle(a)yahoo.fr 2003-16-06 23:49 -------
Working fine with ATI Radeon 9000 here (using Xfree 4.3 Radeon Driver), at least
the demo.
Reporters, is this issue still present ?
--
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=470
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 20:31 -------
close
--
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=1434
Bug 1434 depends on bug 470, which changed state.
Bug 470 Summary: Sound doesnt work on Multiplayer game of Counter Strike Retail 1.3
http://bugs.winehq.com/show_bug.cgi?id=470
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
--
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=160
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jmpenalba(a)terra.es
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 20:30 -------
*** Bug 470 has been marked as a duplicate of this bug. ***
--
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=470
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 20:30 -------
*** This bug has been marked as a duplicate of 160 ***
--
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=160
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|CLOSED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 20:29 -------
Interesting, the last post before bug 470 was marked as a dupe said that this
issue is still unresolved.. Then 470 was marked as a dupe. Now 470 is
reopened but yet the last post there says it was marked as a dupe of this
one.. Im gonna mark it as a dupe again and reopen this one..
--
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=1434
Bug 1434 depends on bug 457, which changed state.
Bug 457 Summary: StarCraft demo cannot download directx due to no internet connection
http://bugs.winehq.com/show_bug.cgi?id=457
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
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=457
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 20:26 -------
No activity in over a year, resolving fixed
--
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=456
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 20:25 -------
Well the not passing command line parameters bug IIRC was fixed shortly after
the last post on this bug last year. Please test this out on the most recent
wine build and let us know what you get.
--
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=440
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 20:20 -------
I am pretty sure the problem still exists now, but just in case, Thorsten,
please try with latest wine version and let us know if the problem still
exists. Also please let us know of the day you downloaded the most recent
version from Dataparty..
--
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=369
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-16-06 20:04 -------
closing
--
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=414
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 20:02 -------
No activity in over a year, resolving fixed
--
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=362
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-16-06 20:02 -------
clsoing.
--
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=400
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:53 -------
No activity in over a year, resolving fixed
--
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=399
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:53 -------
No activity in over a year, resolving fixed
--
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=396
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:52 -------
No activity in over a year, resolving invalid. Open a new bug for each
separate problem if either still exist.
--
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=388
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:49 -------
Correction to the setting for Desktop:
Instead of setting it to no, just put a semicolon (;) before the whole line.
That will disable 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=388
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:48 -------
No activity in over a year, the 2nd desktop would probably be from
the "Desktop" option in your wine config. Set that to no to get it to go
away.. The systray bugs have, for the most part, been fixed since Andriy's
post last year, as I can remember winamp opening its own systray at one time,
but more recently it installs the icon nicely into kde's systray..
So I am resolving this as fixed. Please try this out on the latest wine
version and report back if the issue still exists.
--
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=1434
Bug 1434 depends on bug 369, which changed state.
Bug 369 Summary: Game OOTP3 runs, but screen is shifted downward
http://bugs.winehq.com/show_bug.cgi?id=369
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |REMIND
--
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=369
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |REMIND
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:45 -------
No activity in over a year, resolving fixed
--
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=365
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:44 -------
Mike, please test this out with the latest copy of wine and report back if it
is still an issue. If it is, please attach a copy of the debug output, along
with any error messages the installer itself gives you.
--
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=364
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:42 -------
John, please try this out on the latest wine build and let us know if the issue
still exists.
--
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=363
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:40 -------
Rob, could you test this out with the latest wine version and let us know
whether this still exists?
--
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=362
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:39 -------
No activity in over a year, resolving fixed
--
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=358
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:37 -------
No activity in over a year, resolving fixed
--
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=1434
Bug 1434 depends on bug 358, which changed state.
Bug 358 Summary: RollerCoaster Tycoon (full version)
http://bugs.winehq.com/show_bug.cgi?id=358
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
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=356
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |REMIND
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:36 -------
No activity in over a year, resolving remind
--
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=355
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |REMIND
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:35 -------
No activity in over a year, resolving remind
--
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=339
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:33 -------
No activity in over a year, resolving invalid
--
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=336
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |REMIND
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:31 -------
mdew, please try this out with latest wine version and both this mirc & latest
mirc and let us know if the problem is fixed.
--
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=333
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:30 -------
Closing
--
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=1434
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:30 -------
Can someone please readd details to this bug? (as it is a metabug!)
--
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=333
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:29 -------
No activity in over a year, resolving fixed
--
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=1434
Bug 1434 depends on bug 333, which changed state.
Bug 333 Summary: FreeBSD+HalfLife: Expect deadlock?
http://bugs.winehq.com/show_bug.cgi?id=333
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
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=299
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:28 -------
Closing
--
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=299
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:28 -------
No activity in over a year, resolving worksforme
--
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=327
Bug 327 depends on bug 299, which changed state.
Bug 299 Summary: Wine setup program dies with fatal eror
http://bugs.winehq.com/show_bug.cgi?id=299
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
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=167
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:27 -------
Closing
--
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=167
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:27 -------
No activity in over a year, resolving worksforme
--
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=1515
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:24 -------
Closing, details eaten by Bugzilla when we tried to update 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=1514
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:23 -------
Closing
--
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=1507
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:23 -------
Closing
--
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=1499
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:22 -------
Closing
--
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=1498
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:21 -------
Closing
--
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=1497
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:21 -------
Closing
--
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=1496
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:21 -------
Closing
--
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=1489
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:20 -------
Closing
--
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=1481
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:20 -------
Closing
--
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=1480
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:19 -------
Closing
--
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=1474
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:17 -------
Closing
--
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=1468
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:17 -------
Closing
--
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=1464
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:14 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1457
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:13 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1455
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:13 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1443
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:13 -------
Closing
--
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=1440
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:12 -------
Closing, previous details were deleted by Bugzilla update
--
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=1435
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:12 -------
Closing
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.com/show_bug.cgi?id=1433
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:11 -------
Closing, previous details were deleted by Bugzilla update.
--
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=1423
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:10 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1420
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:10 -------
Closing
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.com/show_bug.cgi?id=1418
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:10 -------
Assuming invalid and closing, previous details were deleted by Bugzilla update.
--
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=1414
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:09 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1391
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:08 -------
Closing
--
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=1386
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:08 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1383
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:07 -------
Closing
--
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=1380
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:06 -------
Assuming invalid and closing, previous details were deleted by Bugzilla update.
--
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=1378
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:06 -------
Assuming invalid and closing, previous details were deleted by Bugzilla update.
--
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=1377
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:06 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1359
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:06 -------
Closing
--
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=1349
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:05 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1343
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:05 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1341
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:04 -------
Assuming invalid and closing, previous details were deleted by Bugzilla update.
--
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=1222
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:02 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1211
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:02 -------
Assuming works and closing, previous details were deleted by Bugzilla update.
--
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=1206
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:02 -------
Assuming works and closing, previous details were deleted by Bugzilla update.
--
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=1154
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:00 -------
Closing
--
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=1434
Bug 1434 depends on bug 1154, which changed state.
Bug 1154 Summary: fixme:ddraw when running Master of Orion 2
http://bugs.winehq.com/show_bug.cgi?id=1154
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
--
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=1154
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 19:00 -------
Resolving wontfix. Adrian, Please open a new bug as the details of this one
were unfortunately eaten by Bugzilla when we tried to upgrade it. If you can
remember any information about why it was marked for later fixing, that would
be appreciated as well.
Any maintainers: If you were assigned this bug, please post new details in new
bug, and mark that one for later fixing..
--
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=1434
Bug 1434 depends on bug 1154, which changed state.
Bug 1154 Summary: fixme:ddraw when running Master of Orion 2
http://bugs.winehq.com/show_bug.cgi?id=1154
What |Old Value |New Value
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|LATER |
--
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=1154
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|LATER |
--
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=1110
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:56 -------
Assuming invalid and closing, previous details were deleted by Bugzilla update.
--
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=1066
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:56 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=1055
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:56 -------
Closing
--
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=1026
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:56 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=980
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:55 -------
Closing
--
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=935
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:54 -------
Assuming fixed and closing, previous details were deleted by Bugzilla update.
--
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=865
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
Summary|The |TheTahoma font is not
|Tahoma font is not present |present
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:53 -------
Assuming invalid and closing, previous details were deleted by Bugzilla update.
--
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=962
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:49 -------
Close
--
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=1434
Bug 1434 depends on bug 304, which changed state.
Bug 304 Summary: Loading of UnrealEd hangs in an infinite loop
http://bugs.winehq.com/show_bug.cgi?id=304
What |Old Value |New Value
----------------------------------------------------------------------------
Status|CLOSED |UNCONFIRMED
Resolution|DUPLICATE |
--
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=304
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|CLOSED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:48 -------
Reopening as the details of my bug (962) were deleted in the update to the
latest BugZilla..
--
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=1434
Bug 1434 depends on bug 962, which changed state.
Bug 962 Summary: Unreal Tournament Editor does not work in wine
http://bugs.winehq.com/show_bug.cgi?id=962
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
--
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=304
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |Speeddymon(a)yahoo.com
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:48 -------
*** Bug 962 has been marked as a duplicate of this bug. ***
--
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=962
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 18:48 -------
Unfortunately I no longer have the details of this bug as I no longer have my
computer, so I dont have Linux or UnrealEd.. :( I guess I will just reopen the
bug that was a dupe of this one.. and close this one..
*** This bug has been marked as a duplicate of 304 ***
--
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=962
------- Additional Comments From spetreolle(a)yahoo.fr 2003-16-06 17:52 -------
SpeeddyMon, could you reenter the details ? Your bug report was another victim
of the BugZilla update.
--
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=851
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:30 -------
hmmm
--
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=760
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:28 -------
close
--
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=760
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:28 -------
resolving
--
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=760
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
--
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=441
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:23 -------
closing
--
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=304
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:22 -------
close
--
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=721
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:15 -------
if someone else wants to takeover this bug, go ahead
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.com/show_bug.cgi?id=624
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:11 -------
close
--
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=624
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:11 -------
resolving as per michael's solution
--
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=588
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:09 -------
close
--
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=441
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:02 -------
no activity 1 yr, resolving worksforme
--
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=441
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
--
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=386
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-16-06 15:01 -------
hmm if this bug is truely fixed then nobody will mind me closing it. if
someone wants to check and reopen it if the bug still exists, feel free..
--
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.