http://bugs.winehq.org/show_bug.cgi?id=4672
------- Additional Comments From hverbeet(a)gmail.com 2006-05-07 06:46 -------
Those aren't binary dumps you're looking at.
@@ -1,4 +1,4 @@
-0000000 eb 48 90 00 ec 00 00 00 00 00 00 00 00 00 00 00
+0000000 00 00 00 00 ec 00 00 00 00 00 00 00 00 00 00 00
Looks like it zeroes the first 4 bytes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4672
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-05-07 06:37 -------
Actually the sample log tells us about Wine getting DMA state of my HD:
0x0000030B HDIO_GET_DMA
Sorry for the typo.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4672
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-05-07 06:32 -------
There are only 5 bytes of the MBR that get changed:
--- hda_OK.mbr.txt 2006-07-05 12:59:16.000000000 +0300
+++ hda_BAD.mbr.txt 2006-07-05 12:59:25.000000000 +0300
@@ -1,4 +1,4 @@
-0000000 30 30 30 30 30 30 30 20 65 62 20 34 38 20 39 30
+0000000 30 30 30 30 30 30 30 20 30 30 20 30 30 20 30 30
0000020 20 30 30 20 65 63 20 30 30 20 30 30 20 30 30 20
0000040 30 30 20 30 30 20 30 30 20 30 30 20 30 30 20 30
0000060 30 20 30 30 20 30 30 0a 30 30 30 30 30 32 30 20
Changes occur at low offsets (<15 B) from the beginning of /dev/hda:
8 B: 65 -> 30
9 B: 62 -> 30
11 B: 34 -> 30
12 B: 38 -> 30
14 B: 39 -> 30.
May be some overflow somewhere? I have no idea on how to catch disk writes to
/dev/hda. Well, maybe except using strace combined with +all Wine trace for a
first time, e.g.:
$ WINEDEBUG=+all strace ./wine notepad &> strace_wine.txt
Then you shoud be able to filter interesting strings from the log, e.g.:
$ cat strace_wpath.txt | grep -v ^[^a-z] | grep -C10 /hda[^0-9] | less -S
An interesting part for me was this:
write(2, "0009:trace:reg:NtSetValueKey (0x"..., 750009:trace:reg:NtSetValueKey
(0x14,L"FirstBusTimeScanInMs",4,0xbfc64714,4)
rt_sigprocmask(SIG_BLOCK, [HUP INT USR1 USR2 ALRM CHLD IO], [], 8) = 0
writev(3, [{"^\0\0\0,\0\0\0\0\0\0\0\24\0\0\0\4\0\0\0(\0\0\0\0\0\0\0"..., 64},
{"F\0i\0r\0s\0t\0B\0u\0s\0T\0i\0m\0e\0S\0c\0a\0n\0"
read(5, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 64) = 64
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(2, "0009:Ret ntdll.NtSetValueKey() "..., 610009:Ret
ntdll.NtSetValueKey() retval=00000000 ret=7fc7bfee
write(2, "0009:Call ntdll.RtlFreeUnicodeSt"..., 600009:Call
ntdll.RtlFreeUnicodeString(bfc646f0) ret=7fc7bffc
write(2, "0009:trace:heap:RtlFreeHeap (0x7"..., 770009:trace:heap:RtlFreeHeap
(0x7fd10000,00000002,0x7fd14630): returning TRUE
write(2, "0009:Ret ntdll.RtlFreeUnicodeSt"..., 680009:Ret
ntdll.RtlFreeUnicodeString() retval=00000001 ret=7fc7bffc
open("/dev/hda", O_RDONLY|O_NONBLOCK|O_LARGEFILE) = 9
ioctl(9, 0x30b, 0xbfc646f8) = 0
close(9) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
write(2, "0009:Call ntdll.RtlCreateUnicode"..., 940009:Call
ntdll.RtlCreateUnicodeStringFromAsciiz(bfc646f0,7fcae580 "DMAEnabled"
Here I see two important lines:
open("/dev/hda", O_RDONLY|O_NONBLOCK|O_LARGEFILE) = 9
ioctl(9, 0x30b, 0xbfc646f8) = 0
By which we can see Wine is opening device of my HD and trying to get a chipset
of a it (from man ioctl_list: 0x00000309 HDIO_GET_CHIPSET) or something like
that... I guess you should find quite a few more IOCTLs. Well, it's a slow way
but quite strightforward.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5600
------- Additional Comments From schroeder(a)stw-bonn.de 2006-05-07 06:11 -------
you are right.
is it desirable to hand a path like Path/kicker.exe to the application instead
of Path\kicker.exe if started with "wine Path/kicker.exe"?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5415
marc(a)mwiriadi.id.au changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |marc(a)mwiriadi.id.au
------- Additional Comments From marc(a)mwiriadi.id.au 2006-05-07 03:12 -------
Should I link the core font or just add it to the .wine/system/fonts directory?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5601
Summary: Fraps fails on loading after install
Product: Wine
Version: 0.9.16.
Platform: Other
URL: http://www.fraps.com
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marc(a)mwiriadi.id.au
Fraps fails on loading after install attachment included
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5417
marc.w(a)smlintl.com.au changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5600
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-04-07 21:41 -------
Run this sample program on windows _from console window_.
What Wine does _is_ correct.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4287
------- Additional Comments From wsun013.wine(a)gmail.com 2006-04-07 20:32 -------
Nearly forget that I posted this bug. It is fixed like 1 or 2 months ago. Thank
you wine guys.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4287
wsun013.wine(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5600
Summary: __argv[0] does not contain path of started executable
Product: Wine
Version: 0.9.16.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: schroeder(a)stw-bonn.de
(sorry, don't know what component is appropriate, i had to select one)
the following code to find the path of the executable (and from that the
datafile kicker.sar) does not work in wine if the program is started like "wine
kicker.exe".
std::string prgPath = __argv[0];
int pos = prgPath.find_last_of('\\');
if (pos != prgPath.npos)
prgPath.erase(pos+1);
std::string sar = prgPath + "kicker.sar";
example program that uses this code-fragment:
http://spiele.download.t-online.de/dladvert/45943
manually setting that prgPath fixes the problem (there are still problems in
that program e.g. that fonts are not displayed, but that's another problem). I
have the full source code of that gamedemo - ask for further info if required.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3628
------- Additional Comments From dank(a)kegel.com 2006-04-07 18:55 -------
Oddly, running as win98 with ole32, oleaut32, and rpcrt4 set to native
doesn't fix the problem... same failure. Looking at +relay
I see it's dying just after trying to access IFileSystem3, which is part of wsh.
And lo and behold, after doing
wine installers/WindowsXP-Windows2000-Script56-KB917344-x86-enu.exe
churchwindows now comes up, as long as I have dcom98!
Moving back to builtin dlls and win2k instead of win98,
cw.exe dies with
fixme:variant:VarCat Failed to convert right side from vt 8 to VT_BSTR?
but THAT's something even I can sink my teeth into.
Progress at last!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3628
------- Additional Comments From dank(a)kegel.com 2006-04-07 18:09 -------
I applied Rob's series of 11 patches from
http://winehq.org/pipermail/wine-patches/2006-July/028223.html
I then followed the steps in http://kegel.com/wine/cw.sh by hand
to install the demo. (I can send it to anyone interested, btw.)
It now fails with a slightly different error:
Error 429 on line 1034 of S_GENRL.BAS(ContInitLoadCW)
ActiveX component can't create object.
The GUIDs in the log look healthier than before, but I
get the feeling this is still unhappy because it wants to use DCOM.
Guess I'll try installing win98's dcom...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5592
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://fifa06.ea.com/home.as|http://www.4players.de/4play
|p?lang=en |ers.php/download_info/PC-
| |CDROM/Download/44633.html
Keywords| |download, regression
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-04-07 17:37 -------
This must be a regression then. Worked quite nice a few versions ago (see
application database, i added a few screenshots) I'll try this demo again if i
have some time.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5545
------- Additional Comments From mstefani(a)redhat.com 2006-04-07 17:20 -------
Dan, could you guys please have a look at the beginning of the tests for VarMul
and VarAdd and implement something similar for VarCat? I mean the part that
checks all possible input variants to those functions.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5545
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dinardo(a)creasoftware.net
------- Additional Comments From mstefani(a)redhat.com 2006-04-07 17:15 -------
*** Bug 5596 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5596
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From mstefani(a)redhat.com 2006-04-07 17:15 -------
I'm merging this bug into #5545 as it is the same problem with VarCat not
accepting all input variants that native accepts.
I've run 'WINEDEBUG=+variant wine NullConvertTest.exe' and the important line is:
fixme:variant:VarCat Failed to convert right side from vt 1 to VT_BSTR?
VarCat dosn't handle VT_NULL here.
*** This bug has been marked as a duplicate of 5545 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5541
------- Additional Comments From dank(a)kegel.com 2006-04-07 16:47 -------
It's so short, here it is inline:
$ WINEDEBUG=+ole wine-git/wine .wine/drive_c/windows/system32/cscript.exe
trace:ole:DllMain 0x7f920000 0x1 0x1
trace:ole:DllMain (0x7f9b0000,1,0x1)
trace:ole:CoInitializeEx ((nil), 2)
trace:ole:CoInitializeEx () - Initializing the COM libraries
trace:ole:RunningObjectTableImpl_Initialize
trace:ole:apartment_construct creating new apartment, model=2
trace:ole:apartment_construct Created apartment on OXID 800000009
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
fixme:ole:CoRegisterMessageFilter stub
fixme:ole:CoRegisterMessageFilter stub
trace:ole:CoUninitialize ()
...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5599
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From vitaliy(a)kievinfo.com 2006-04-07 14:10 -------
use 'winelauncher' to start Wine then. It will display your message box you are
talking about.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5487
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |kkelly(a)cinci.rr.com
------- Additional Comments From vitaliy(a)kievinfo.com 2006-04-07 14:07 -------
*** Bug 5598 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5598
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2006-04-07 14:07 -------
Duplicate
*** This bug has been marked as a duplicate of 5487 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5599
Summary: Make fatal errors display a Windows message box
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P3
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris.kcat(a)gmail.com
This is a "feature" I find sorely lacking, especially for people who like
to 'click and pray'. Normally when Wine fails and causes the app to die, it
prints out something to the console then exits. I think it would be really
helpful if it also brought up a message box, so it's a little more direct
about the problem. Things like failing to load a required DLL would benefit,
since even if the console is there, the actual error is not always easilly
readable (there could be multiple errors intermixed with other messages, and
the message has these wierd symbols around the string and has backslashes
doubled up; all making it difficult). It would also help seperate Wine
problems (missing DLLs typically are not) from actual program problems.
It might also be nice to have crash data grabbed from winedbg thrown into a
message box as well (something akin to Windows' infamous illegal operation
error dialog), along with printing to the console.
This would be useful since even apps that are known to work can still crash on
their own accord, through no fault of Wine's. And even if not, it would be
handy having a box pop right up that you can easilly Select All/Copy/Paste
from. Echoing fatal errors from the console to a message box for the user to
see would help move away from requiring a console to monitor output just in
case the program crashes, though they could still be encouraged to use a
console when investigating a problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5598
------- Additional Comments From kkelly(a)cinci.rr.com 2006-04-07 13:51 -------
I forgot to add... the game dies at this point.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5598
Summary: nested exceptions running game when using kernel 2.6.17
Product: Wine
Version: 0.9.14.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kkelly(a)cinci.rr.com
I'm not sure if this is a bug in wine, the kernel, or the result of sloppy
programming in the Windows app. When running Day of Defeat (a Half-Life mod) via
Steam with kernel-2.6.17 and later I get the following when the game starts up:
fixme:seh:check_no_exec No-exec fault triggered at 0x1e44e79, enabling work-around
fixme:seh:check_no_exec No-exec fault triggered at 0x1e49364, enabling work-around
fixme:seh:check_no_exec No-exec fault triggered at 0x1e42350, enabling work-around
fixme:seh:check_no_exec No-exec fault triggered at 0x1e4ccfc, enabling work-around
fixme:seh:check_no_exec No-exec fault triggered at 0x1e483f3, enabling work-around
fixme:seh:check_no_exec No-exec fault triggered at 0x1e4fe36, enabling work-around
fixme:seh:check_no_exec No-exec fault triggered at 0x1e41eb5, enabling work-around
fixme:seh:check_no_exec No-exec fault triggered at 0x1e47422, enabling work-around
err:seh:setup_exception nested exception on signal stack in thread 003d eip
7ffb4a83 esp 7fe43bd0 stack 0x7fab1000-0x7fbc0000
err:seh:setup_exception nested exception on signal stack in thread 003d eip
7ffb4a83 esp 7fe43bd0 stack 0x7fab1000-0x7fbc0000
I'm running Gentoo on an AMD64 system. Newer versions of wine won't build on my
system right now, so I don't know if the problem is still there. Reverting to
kernel-2.6.16 fixes the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4848
ilan(a)fonz.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.12. |0.9.16.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4851
ilan(a)fonz.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.16. |0.9.9.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4851
ilan(a)fonz.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.9. |0.9.16.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4848
------- Additional Comments From ilan(a)fonz.net 2006-04-07 13:35 -------
Confirmed in 0.9.16. See attachment for updated logs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5597
------- Additional Comments From vitaliy(a)kievinfo.com 2006-04-07 13:18 -------
It's expecting a device BCMDMCCP.
Which is probably a part you haven't installed. And it's not supported by Wine
anyway.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4232
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From dank(a)kegel.com 2006-04-07 13:03 -------
See bug 5597 for the next problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5597
Summary: Kiwi Cattools 3.0.6 crashes on startup
Product: Wine
Version: CVS
Platform: Other
URL: http://www.kiwisyslog.com/software_downloads.htm#cattool
s
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Continued from bug 4232.
The current version of Kiwi Cattools installs fine
if you ask it to install as an app rather than a service,
but crashes on startup.
With winecfg set to win98, it opens all sorts of vxd's:
fixme:vxd:VXD_Open Unknown/unsupported VxD L"bcmdmccp.vxd". ...
fixme:vxd:VXD_Open Unknown/unsupported VxD L"smartvsd.vxd". ...
...
then dies with
err:seh:setup_exception stack overflow 56 bytes in thread 0009 eip 7ff8ffb6 esp
7fa90fc8 stack 0x7fa91000-0x7fba0000
With winecfg set to the default of win2k, it still dies with that last line.
+relay,+file shows it's trying to open a file that has the
same name as one of those vxd's, BCMDMCCP, and which is
commonly associated with a winmodem:
0009:Call kernel32.CreateFileA(00638630
"\\\\.\\BCMDMCCP",00000000,00000003,00000000,00000003,00000080,00000000)
ret=00630822
trace:file:CreateFileW L"\\\\.\\BCMDMCCP" QUERY_ACCESS FILE_SHARE_READ
FILE_SHARE_WRITE creation 3 attributes 0x80
...
warn:file:CreateFileW Unable to create file L"\\\\.\\BCMDMCCP" (status c0000034)
0009:Call ntdll.RtlNtStatusToDosError(c0000034) ret=7fc3284b
0009:Ret ntdll.RtlNtStatusToDosError() retval=00000002 ret=7fc3284b
trace:file:CreateFileW returning 0xffffffff
0009:Ret kernel32.CreateFileA() retval=ffffffff ret=00630822
0009:Call kernel32.GetVersion() ret=00634b60
0009:Ret kernel32.GetVersion() retval=08930005 ret=00634b60
err:seh:setup_exception nested exception on signal stack in thread 0009 eip
7ffb559e esp 7fe45c60 stack 0x7fa91000-0x7fba0000
So it seems like the app is tripping over its own shoelaces somehow.
Maybe tracing the syscalls in winxp would show us what the
app is expecting...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4232
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From dank(a)kegel.com 2006-04-07 12:42 -------
Yeah, the current version of the app on current wine doesn't have anything like
the same errors. Marking as fixed. I'll open a separate bug for
the remaining issues.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5596
dinardo(a)creasoftware.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Runtime error '13' in VB App|Runtime error '13' in VB App
|at concat Null to NullString|at concat Null to
| |NullString; Convert null to
| |string
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4842
------- Additional Comments From ilan(a)fonz.net 2006-04-07 12:32 -------
Should I use the built in or native oleaut32?
As previously mentioned the native version allows the program to run. The
builtin version fails.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5596
------- Additional Comments From dinardo(a)creasoftware.net 2006-04-07 12:30 -------
(From update of attachment 2823)
In this exe sample there are two controls: command1 and Text1. In the
Command1_Click there is tho follow code: text1.text = "" & Null. This work in
windows, but Wine raise the runtime error 13
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5596
------- Additional Comments From dinardo(a)creasoftware.net 2006-04-07 12:27 -------
Created an attachment (id=2823)
--> (http://bugs.winehq.org/attachment.cgi?id=2823&action=view)
This is an executable sample of bug
In this exe sample, there are: one command button (command1) and one TextBox
(text1), in the command button (command1_click) there is the follow code:
text1.text = "" & Null. This work in windows, but Wine raise the runtime error
13.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5596
Summary: Runtime error '13' in VB App at concat Null to
NullString
Product: Wine
Version: 0.9.16.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dinardo(a)creasoftware.net
In VB6 is typic concat a Recordset Field value to nullstring ("") so:
MyStringVar = "" & MyRecordset.Field("FieldName").Value
In this case, if the field value is Null, it come convert in a string, but
Wine raise the error: Type Mismatch (Err N.13). In Windows work normally!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4084
------- Additional Comments From vitaliy(a)kievinfo.com 2006-04-07 11:41 -------
Created an attachment (id=2822)
--> (http://bugs.winehq.org/attachment.cgi?id=2822&action=view)
warn+file,+ver
Yes same exact problem. It's checking for a version of system32\user.exe.
Because Wine doesn't have it it fails.
Placing a native copy of that file into system32 doesn't fix the problem either
- it checks the version several times and fails.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3154
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-04-07 11:38 -------
I have tried changing a few of the stub return values but it did not affect the
outcome.
Trace of open program and close program followed by a ctrl C. Shows WM_CLOSE
messages trying to close. I also see what looks like a call to the 16 ole
routines. 1.8 meg Log at http://arcelectronicsinc.com/testinfo/ole_relay.zip
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4421
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-04-07 10:45 -------
Resolving FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4703
------- Additional Comments From ferchimi(a)gmail.com 2006-04-07 10:18 -------
I'm using wine 0.9.11 since is the latest stable debian package available and in
this version the bus is still present, I am starting to suspect hat my old wine
work direcory is no longer usefull, neither are my dll overrides
I you can, please give me some information on installing windows system software
such as ole and ole32 (and so) and overriding dlls wihout using winetools, which
I used in the past to install IE6, MFC and other stuff, perhaps this is the
problem, and if I correct it maybe it will work ok...
thanx
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4421
------- Additional Comments From david.ronis(a)mcgill.ca 2006-04-07 10:17 -------
I just did a cvs update and rebuilt. The problem seens to have been fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5183
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Run-time error "13": Type |Run-time error "445":Object
|mismatch |doesn't support this action
| |(oleaut32)
Version|0.9.12. |0.9.16.
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-04-07 10:15 -------
Looks like one bug (in ole32) is fixed now indeed. Now there's still a bug in
oleaut32, it pops up a message bog with Run-time error "445":Object doesn't
support this action. With only native oleaut32 it runs fine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4426
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 10:13 -------
Does this bug still occur with a recent version of Wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5245
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Component|wine-ole |wine-misc
Ever Confirmed| |1
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 09:29 -------
Louis Lenders said on wine-devel:
"Isn't this just a bug in msvcrt? WINEDLLOVERRIDES="msvrt=n" wine Terragen.exe
works fine"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5245
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 09:25 -------
*** Bug 4370 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4370
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 09:25 -------
Marking as duplicate as suggested.
*** This bug has been marked as a duplicate of 5245 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3013
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 09:22 -------
Run the program with WINEDEBUG=fixme-ole app.exe and the performance problem can
be worked around.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2677
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |ABANDONED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2303
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 09:18 -------
This works for me with current GIT.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1434
Bug 1434 depends on bug 2303, which changed state.
Bug 2303 Summary: Medal of Honor Allied Assault will not load
http://bugs.winehq.org/show_bug.cgi?id=2303
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3991
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 08:44 -------
Need to install MDAC and/or ADOX as Vitaliy says.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4414
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |max-wine(a)alcyone.com
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 08:16 -------
*** Bug 1730 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1730
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 08:16 -------
Duplicate of 4414.
*** This bug has been marked as a duplicate of 4414 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4287
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 08:13 -------
This works for me. It was likely a listbox bug that has been fixed in the last 5
months.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4232
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 08:01 -------
Is this bug still present in a recent version of Wine? The version originally
tested with no longer appears to be available for download.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5541
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:55 -------
Are any debug messages printed?
Can you attach a +ole log to this bug (with builtin ole32)?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5177
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:53 -------
This works for me with the most recent version of Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5071
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:47 -------
This is probably the bug:
fixme:ole:OLEFontImpl_GetIDsOfNames
(0x7e064210,{00000000-0000-0000-0000-000000000000},0x7fafefac,1,0409,0x7fafefb0),
stub!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4374
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-ole |wine-directx-dplay
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:42 -------
This is DirectPlay not implementing something, not an ole error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4354
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:40 -------
Is this bug still present in the most recent version of Wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4265
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |rob(a)codeweavers.com
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:37 -------
This is probably the bug:
err:ole:RunningObjectTableImpl_Register Invalid combination of ROTFLAGS: 3
The correct solution is complicated, as ole seems to check some registry keys
and according to an MSKB entry fails with certain error codes if they aren't
present.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4258
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:35 -------
I'm not sure this is an ole problem. The ole trace looks normal to me.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3812
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:16 -------
Is the bug still present in the most recently released version of Wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4084
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:13 -------
Is the bug still present in the most recently released version of Wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3105
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:03 -------
Resolving as fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2883
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 07:02 -------
Looks like the application has regressed further:
trace:storage:HGLOBALStreamImpl_Write (0x7fdbe3f0, 0x7faff9e4, 24, (nil))
trace:storage:HGLOBALStreamImpl_SetSize (0x7fdbe3f0, 24)
trace:storage:HGLOBALStreamImpl_Write (0x7fdbe3f0, 0x7faff974, 40, 0x7faff99c)
trace:storage:HGLOBALStreamImpl_SetSize (0x7fdbe3f0, 64)
trace:storage:HGLOBALStreamImpl_Write (0x7fdceb30, 0x7faff9e4, 24, (nil))
trace:storage:HGLOBALStreamImpl_SetSize (0x7fdceb30, 24)
trace:storage:HGLOBALStreamImpl_Write (0x7fdceb30, 0x7faff974, 40, 0x7faff99c)
trace:storage:HGLOBALStreamImpl_SetSize (0x7fdceb30, 64)
trace:storage:StgCreateDocfile ((null), 4011022, 0, 0x7faff6c0)
trace:storage:StgCreateDocfile <-- (nil) r = 800300ff
It shows a message box saying that the StgCreateDocfile call failed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2108
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:57 -------
The test program puts up a message box with a title of "Microsoft" and a message
of "Result: 0", so this bug is now fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2612
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=4421
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:44 -------
Does this compile problem still occur for you in a recent release of Wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2423
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |ABANDONED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4811
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-ole |wine-misc
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4294
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:43 -------
The compile problem is a known one caused by using an older version of the gif
development libraries.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5415
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:41 -------
It sounds like you need to install the Arial font. This can be accomplished by
installing the Microsoft TrueType core fonts. In my distributions this is the
msttcorefonts package.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5279
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:37 -------
Presumably this can be worked around by doing "start <path to start menu item>",
which will accurately simulate what Explorer does when starting the process.
Don't listen to Vitaliy's comment about not posting traces here. Posting small
subsets of fixmes into the comments allows them to be searched using the
bugzilla interface, which is useful for finding bugs of the same class.
Marking as WONTFIX. Reopen if you disagree.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5264
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:32 -------
Please retry with the most recent released version and confirm if the bug is
still there.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5174
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:31 -------
Could you attach a log generated with WINEDEBUG=+ole,+typelib? This will help me
identify the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4842
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:29 -------
Can you post the messages you get when running Golden Spade Poken when you have
the shockwave and flash players installed in Wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4703
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:27 -------
Is this bug still present in the most recent release?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4406
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |rob(a)codeweavers.com
Status|ASSIGNED |NEW
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4406
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Ever Confirmed| |1
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:24 -------
This is a known problem and is on my todo list.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4314
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:23 -------
The fixmes and errors don't appear to be the source of any bugs, so marking as
WONTFIX. The problem with umlauts is probably something to do with the keyboard
code.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4237
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:19 -------
It looks like it requires Windows Media Player to be installed, but can you
retest with most recent released version to see if it fails more gracefully now?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3214
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:13 -------
I think you're mixing native oleaut32 and builtin oleaut32. Try running with
WINEDLLOVERRIDES=oleaut32=b setup.exe
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3154
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:12 -------
Looks like the bug is related to the fixmes above. The problem is that olecli32
and olesrv32 aren't really implemented at the moment.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3324
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From rob(a)codeweavers.com 2006-04-07 06:02 -------
Resolving as fixed as per the comments of Gregor Muench.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5595
------- Additional Comments From truiken(a)gmail.com 2006-04-07 05:58 -------
The installer was calling MsiSetTargetPath after the CostFinalize action, which
is where the target paths are originally set for installation files.
Originally, the directories were being changed, but that doesn't trickle down to
the file's target paths, so we have to update those too. After this change, all
the Lotus Notes files install in the correct destination directory.
Patch sent:
http://winehq.org/pipermail/wine-patches/2006-July/028280.html
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5526
sterlingchristensen(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |sterlingchristensen@hotmail.
| |com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5595
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|--- |1.0.0
------- Additional Comments From dank(a)kegel.com 2006-03-07 20:45 -------
Setting target to 1.0. Let's fix this puppy.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5595
Summary: Lotus Notes 6.5.3 demo doesn't install
Product: Wine
Version: CVS
Platform: Other
URL: http://www-128.ibm.com/developerworks/lotus/downloads/
OS/Version: other
Status: NEW
Keywords: download
Severity: major
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Lotus Notes 6.5.3 demo doesn't install on vanilla wine.
It puts most of the files in the root of C:\ instead of
where you ask it to, so the resulting tree looks
like a dog's breakfast. Quite a few msi err's in
the log, which I will attach.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5276
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-03-07 17:13 -------
The new Ogre demos now suffer from this same bug:(
Downloadlink: http://www.ogre3d.org/
(Button "Demos" and then OGRE Demos (Win32) 1.2.0)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5426
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From truiken(a)gmail.com 2006-03-07 16:38 -------
The install works now. If you have other problems with Orca, please open a new
bug report.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5470
Andrew.Talbot(a)talbotville.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2006-03-07 16:15 -------
Actually, the app hangs after about six seconds, when run via winedbg. But it
runs, giving sound but no picture. So the summary is misleading. Shall I,
therefore, close the bug as fixed?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5594
------- Additional Comments From vitaliy(a)kievinfo.com 2006-03-07 16:09 -------
It looks like copy protection to me. And if it even tries (and I'm sure it does)
to load vxd driver - it will not work.
That's why I asked you to use "no-cd" patch.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5402
------- Additional Comments From bariuspelagic(a)hotmail.com 2006-03-07 15:15 -------
Well, now I get the same errors as before. See the attached console output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5594
------- Additional Comments From muadda(a)gmail.com 2006-03-07 15:03 -------
cd to the directory does not change the behavior: I still have the same stack.
And with Win2k, I get the same error message "Sorry, not supported on Windows NT."
I should not need 'no-cd' because the "Play" CD is in my PC.
Do you think I need the last version of Wine? Somebody manages to run the game
according to:
http://appdb.winehq.org/appview.php?versionId=368
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4863
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |huw(a)codeweavers.com
------- Additional Comments From vitaliy(a)kievinfo.com 2006-03-07 14:47 -------
Adding author of the patch to CC.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5594
------- Additional Comments From vitaliy(a)kievinfo.com 2006-03-07 14:43 -------
Please run this program this way:
cd ~/.wine/drive_c/Program\ Files/L\'Exode\ d\'Abe/
wine Exoddus.exe
Also please verify that it does work on Win2k. If it does not, it probably will
not work on Wine.
Also please try using "no-cd" patch if applicable.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5402
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-03-07 14:40 -------
set wineversion to winxp (using winecfg) and try again please. Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4863
------- Additional Comments From mlessard(a)tc2l.ca 2006-03-07 14:38 -------
I have same issue with wine 0.9.16 and Suse 10.1 with Lotus 6.5.1 .. why you
don't put patch in new release ?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5402
------- Additional Comments From bariuspelagic(a)hotmail.com 2006-03-07 14:15 -------
I replaced the original WINE msvcrt.dll with one from a WinXPsp2 computer, version:
7.0.2600.2180 (xpsp_sp2_rtm.040803-2158)
When I try to run the program as you posted before I only get this:
err:module:LdrInitializeThunk "MSVCRT.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Canon\\PhotoStitch\\stitch.exe" failed, status c0000142
If I try to run it normally ("wine app.exe") then I get the same kinds of errors
as before.
Unforutnately, Canon does not provide the software for download. However, if
you like I can email it to you (4.56Mb zip file).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5594
Summary: Unhandled page fault at startup with the game "Oddworld,
Abe's Exoddus"
Product: Wine
Version: 0.9.9.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: muadda(a)gmail.com
When I run the game Exoddus.exe with "win98" setted in the winecfg tool, I get:
wine: Unhandled page fault on read access to 0xfedaf320 at address 0x40d830
(thread 000b), starting debugger...
When I run with winxp, win31, win4.0 or others, I get:
"Sorry, not supported on Win32s."
or:
"Sorry, not supported on Windows NT."
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5593
Summary: fixme:midi
Product: Wine
Version: 0.9.16.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkstone(a)gmail.com
Hello. Just finding out how to use wine. When entering winecfg I get this fixme:
root@lkstone-desktop:/home/lkstone# winecfg
fixme:midi:OSS_MidiInit Synthesizer support MIDI in. Not supported yet (please
report)
Thanks
LK
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4093
------- Additional Comments From the3dfxdude(a)gmail.com 2006-03-07 12:31 -------
Florian,
You don't have accelerated opengl drivers. Install them and run the game using
opengl. The editor doesn't support opengl. I recommend using OSS as wine's sound
driver. If you don't do this, you will always have problems and we cannot help you.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4093
------- Additional Comments From florianskarten(a)web.de 2006-03-07 12:25 -------
I forgot to say that i start it (and Warcraft III) without -opengl argument,
because it makes no difference.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4093
------- Additional Comments From florianskarten(a)web.de 2006-03-07 12:21 -------
Created an attachment (id=2816)
--> (http://bugs.winehq.org/attachment.cgi?id=2816&action=view)
Warcraft 3 : WorldEditor Crash Log
The World-Editor of Warcraft 3 crash too. I didn't see the crash, because i was
away at the momment of the crash. (so I don't know why it crashed.)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5588
max-lists(a)ycom.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |minor
OS/Version|other |Linux
Version|unspecified |0.9.16.
------- Additional Comments From max-lists(a)ycom.ch 2006-03-07 09:35 -------
Sorry for the bad bug definition.
My Linux distribution is Gentoo 2006.0.
I have this bug since I'm using wine (2004????)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5592
------- Additional Comments From Speedator(a)gmx.de 2006-03-07 08:55 -------
Created an attachment (id=2815)
--> (http://bugs.winehq.org/attachment.cgi?id=2815&action=view)
Log of the fifa06 demo.exe
"err:d3d:IWineD3DDeviceImpl_CreateAdditionalSwapChain Error in setting current
context (display 0x7c02fdd8 context 0x7c371098 drawable 50331651)!"
Don't know if it is the reason for the crash..
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5592
Summary: Fifa06 Demo closes directly after starting
Product: Wine
Version: 0.9.16.
Platform: PC
URL: http://fifa06.ea.com/home.asp?lang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Speedator(a)gmx.de
The demo installs without problems. But after executing it closes directly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5588
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|website-bugs |wine-binary
Product|WineHQ Apps Database |Wine
------- Additional Comments From vitaliy(a)kievinfo.com 2006-03-07 08:19 -------
Not an appDB bug. Please update your system information (hw, os, etc).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5591
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P2 |P3
------- Additional Comments From vitaliy(a)kievinfo.com 2006-03-07 08:15 -------
Had the same problem at some point of time. Then it went away. Don't remember
doing anything about that.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5590
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |trivial
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Priority|P2 |P4
Summary|blue faces and over exposue |Blue faces in HL 2
|in HL 2 |
Version|unspecified |CVS
------- Additional Comments From vitaliy(a)kievinfo.com 2006-03-07 08:14 -------
These are two separate bugs. Please file one more bug for "exposue".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5591
Summary: no sound over monitors in HL 2
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: strattonbrazil(a)gmail.com
Sound in HL 2 works well, except over monitors. Characters' mouths move but no
speech is audible. Only noticeable over monitors.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5590
Summary: blue faces and over exposue in HL 2
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: strattonbrazil(a)gmail.com
Certain faces in HL2 appear with strong blue tint. Also it seems several
objects are over exposed and appear very white.
This is the output from the game if that has any relation:
Reference Count for Material __lookupviewpanel (1) != 0
Reference Count for Material vgui/zoom (5) != 0
Reference Count for Material effects/tp_eyefx/tpeye3 (2) != 0
Reference Count for Material effects/tp_eyefx/tpeye (2) != 0
Reference Count for Material effects/tp_eyefx/tpeye2 (2) != 0
Reference Count for Material sprites/scanner_dots1 (1) != 0
Reference Count for Material sprites/scanner_dots2 (1) != 0
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5589
stefandoesinger(a)gmx.at changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|stefandoesinger(a)gmx.at |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |stefandoesinger(a)gmx.at
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From stefandoesinger(a)gmx.at 2006-03-07 04:25 -------
err:ddraw:IDirectDrawSurfaceImpl_SetSurfaceDesc Setting the surface memory
isn't supported yet
is the pointer. This was reported to break some other game too, I will look at
that
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=5589
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |stefandoesinger(a)gmx.at
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5589
Summary: regression: weirdworld stopped working
Product: Wine
Version: CVS
Platform: PC
URL: http://download.shrapnelgames.com/downloads/weirdworlds_
demo.exe
OS/Version: Linux
Status: UNCONFIRMED
Keywords: regression, download
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi, the game just exits with the attached console output. I ran with
WINEDLLOVERRIDES="msvcrt,dinput=n" wine weird.exe
to get around two other bugs. In wine-0.9.15 the game ran fine using same
command. This is likely due to ddraw rewrite.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4513
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3182
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3692
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.jowood.com/gamers
| |/?lang=de&site=2&ScreenID=63
| |09&GameID=gothic2&pfid=PC
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5588
Summary: Cresus-facturation: contextual window not appearing
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max-lists(a)ycom.ch
I recently entered this app in the AppDB as it's almost entirely working with Wine.
Only this tiny contextual window is getting me nuts ;)
The weblink to download the evaluation software is contained in the AppDB page:
http://appdb.winehq.org/appview.php?versionId=5167
Here's how to reproduce the bug :
The wizard is launched the first time you open the application.
- Click "Next" ("Suivant").
- Choose "simple" on the left list and then click "Suivant"
- Keep the radio selection as it appears and click again on "Suivant"
- Enter any name you want for the next screen. It will be the name of the invoice.
- Click on "Terminer" to finish the wizard
- A notification window appear, Click "Ok"
- A new Wizard (Assistant) opens. Click on "Annuler" to cancel it
Now the main app window is displayed.
- Click on the menu button containing a house with an outgoing arrow.
- On the new screen, click on the "+" sign on the bottom. The screen changes a
bit and you can now have access to the lines of the invoice.
The tiny window should appear through clicking once on any of the blank fields.
You can surely see it very briefly and eventually permanently appearing if
you're lucky.
I already contacted the developper of this app and told me that no "special"
code was used for this window. So it might be in Wine. Anyone willing to take
this challenge ? :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5527
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5401
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.download.com/Need
| |-for-Speed-Most-Wanted-
| |demo/3000-7534_4-
| |10459687.html
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5384
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5280
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5031
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4907
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3819
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3694
------- Additional Comments From dank(a)kegel.com 2006-02-07 22:38 -------
Still crashing with 0.9.16. Interesting failure also when you
do File Open, it shows you a link to Example Scores, but it
won't let you open it; you have to navigate to the real location.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4939
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |major
------- Additional Comments From dank(a)kegel.com 2006-02-07 22:18 -------
I installed it just now on 0.9.16 (well, really, cvs as of a couple
days ago), and it crashes in the mozilla plugin:
Backtrace:
=>1 0x7e73189b in plds4 (+0x189b) (0x7e73189b)
2 0x7e804e3e in mozctl (+0x14e3e) (0x7e804e3e)
3 0x7e800e89 in mozctl (+0x10e89) (0x7e800e89)
4 0x7e7ff0fc in mozctl (+0xf0fc) (0x7e7ff0fc)
5 0x7e1a36b4 in docshell (+0x136b4) (0x7e1a36b4)
6 0x7e1a303b in docshell (+0x1303b) (0x7e1a303b)
7 0x7e1a2ed7 in docshell (+0x12ed7) (0x7e1a2ed7)
8 0x7e494ca8 in necko (+0x4ca8) (0x7e494ca8)
9 0x7de73784 in imglib2 (+0x3784) (0x7de73784)
10 0x7de73bcb in imglib2 (+0x3bcb) (0x7de73bcb)
11 0x7e4eca08 in necko (+0x5ca08) (0x7e4eca08)
12 0x7e4c94b3 in necko (+0x394b3) (0x7e4c94b3)
13 0x8b560c45 (0x8b560c45)
14 0x00000000 (0x00000000)
Let's try again in a week or two when the new web browser is
integrated into wine.
I'm lowering the priority to 'major', as this isn't really a
blocker, you can still test other apps.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5587
Summary: copernic 1.7 fails to install, and to run, because we
fail IE checks
Product: Wine
Version: CVS
Platform: Other
URL: http://www.copernic.com/en/products/desktop-
search/download.html
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
copernic 1.7 won't install on a pure wine unless you fake it out by
setting a registry entry to tell it IE is installed; I do the usual
[Software\\Microsoft\\Internet Explorer]
"Version"="6.0.2900.2180"
trick. It then installs, but complains several times at the end
(while registering DLLs?) that IE isn't installed. Same error
when starting the app. +relay shows it's probably looking for
a particular resource:
trace:module:process_attach (L"mshtml.dll",(nil)) - START
...
0009:Ret kernel32.LoadLibraryExW() retval=7e950000 ret=7f604427
0009:Call kernel32.FindResourceW(7e950000,00000001,00000010) ret=7f60444f
0009:Call ntdll.LdrFindResource_U(7e950000,7fb9fb44,00000003,7fb9fb60) ret=7fc67f80
0009:Ret ntdll.LdrFindResource_U() retval=c000008a ret=7fc67f80
0009:Call ntdll.RtlNtStatusToDosError(c000008a) ret=7fc67f1a
0009:Ret ntdll.RtlNtStatusToDosError() retval=00000715 ret=7fc67f1a
0009:Ret kernel32.FindResourceW() retval=00000000 ret=7f60444f
0009:Call kernel32.FreeLibrary(7e950000) ret=7f604474
0009:Call ntdll.LdrUnloadDll(7e950000) ret=7fc4d4f1
trace:module:LdrUnloadDll (0x7e950000)
trace:module:LdrUnloadDll (L"mshtml.dll") - START
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4462
------- Additional Comments From alexandreracine(a)gmail.com 2006-02-07 18:56 -------
I used filezilla on Windows before and use it now with Ubuntu and Wine latest
(0.99?).
I got the same problem written up here.
So after searching a LOT, here is a work-around how to make it work, but for the
non-programmer, like me.
Get a terminal and run "winecfg".
In the library tab, add riched20 and riched32 in the native only mode. Save.
Download from somewhere (dll-files.com?) and copy the .dll files in your
windows/system directory.
Run filezilla as before.
The only problem now is that the logs in filezilla (upper pannel) paste on only
one line.
By the way, this might make your other Wine apps not work. Hey, we never know.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4306
super-greg(a)gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #1689 is|0 |1
obsolete| |
------- Additional Comments From super-greg(a)gmx.de 2006-02-07 17:46 -------
Created an attachment (id=2813)
--> (http://bugs.winehq.org/attachment.cgi?id=2813&action=view)
console output
still no change in current cvs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4449
------- Additional Comments From tom.halligan(a)gmail.com 2006-02-07 16:44 -------
WOOPS! As an edit to my previous comment, you can't open .res file with gedit.
vi should work fine though, or the default Text Editor that comes with Ubuntu
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5585
the3dfxdude(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From the3dfxdude(a)gmail.com 2006-02-07 15:54 -------
closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5586
Summary: Tibia do not run
Product: Wine
Version: 0.9.16.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vetor1(a)ubbi.com.br
In a few weeks ago I cannot run tibia on version 9.15, but discovered that
adding 'engine 0' at the end of shortcut solve the problem. The acctual problem
start with the new version (9.16) and is described here:
I use mandriva linux version LE, running on semprom with 512 RAM.
When trying to run Tibia.exe (version 7.72), installed in the default past, the
aplication came into infinite loop and send msg
'err:d3d_surface:d3dfmt_convert_surface Unsuportede conversation type 9', when I
start from command line... on the shortcut the program do not start or show a
window empty.
Sorry for my poor english.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4672
------- Additional Comments From the3dfxdude(a)gmail.com 2006-02-07 15:50 -------
Make sure you don't give write access to your block device node. Also, never run
as root.
Hold on here. Could everyone post their .wine/dosdevices of people that had this
happen? I'm starting to think this is the game's doing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5585
the3dfxdude(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From the3dfxdude(a)gmail.com 2006-02-07 15:48 -------
Dupe.
Note to reporter: make sure you use opengl and not Direct3d.
*** This bug has been marked as a duplicate of 4093 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4093
the3dfxdude(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |florianskarten(a)web.de
------- Additional Comments From the3dfxdude(a)gmail.com 2006-02-07 15:48 -------
*** Bug 5585 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5585
------- Additional Comments From florianskarten(a)web.de 2006-02-07 15:45 -------
Created an attachment (id=2812)
--> (http://bugs.winehq.org/attachment.cgi?id=2812&action=view)
same but this time i waited and it crashed
The same happens again. This time i waited longer and after some time it
crashed. But even after the crash the soundloop doesn't stop. Only killing the
winedbg progress stop that sound loop.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5585
Summary: Warcraft 3 Frozen Throne freeze while playing
Product: Wine
Version: 0.9.16.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: florianskarten(a)web.de
Sometimes it happens that Warcraft 3 Frozen Throne freeze and the sound of the
last second ist repeated in an endless loop.
I had to kill Warcraft with killall -s9 war3.exe.
Maybe it is related with the sound, because the last entry of the log ist:
err:ntdll:RtlpWaitForCriticalSection section 0x7fd6ed94 "WINEALSA_mmap_crst"
wait timed out in thread 0022, blocked by 0000, retrying (60 sec)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4672
------- Additional Comments From matthias_berndt(a)gmx.de 2006-02-07 14:34 -------
I can confirm this bug for WINE 0.9.16. I tried to run Diablo 2 but it didn't
work (probably because i didn't yet configure it properly and my X
configuration is screwed anyway) and, worse than that, it fucked up my MBR.
I'll attach some MBR dumps later on...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5584
Pawel.Rozanski(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |Pawel.Rozanski(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5584
Summary: Regression while moving d3d8 code to wined3d
Product: Wine
Version: 0.9.16.
Platform: PC
URL: http://www.studiotrophis.com/download.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Pawel.Rozanski(a)gmail.com
The White Chamber (it's free) shows intro corectly before
http://source.winehq.org/git/?p=wine.git;a=commit;h=d13469c1d889e2ebe2003a2…
commit, this one breaks it. (see attachments) I think this is regression because
commit clearly says that nothing should change here. Bug is present on git/master.
Commit is quite big, so i couldn't find a cause...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4036
------- Additional Comments From super-greg(a)gmx.de 2006-02-07 13:26 -------
Hi,
I already solved this by using a native dinput8 dll, but thanks.
I collected some more informations about the used copyprotection.
First securom is used but also a thing called "X-treme Protector". http://
www.oreans.com/xprotector/xprot.htm
If you wonder what spellforce v1.54 is, its a special game version which is
only avaible in the games magazine. This version isnt avaible to download, but
it comes without securom and xprot.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=3312
------- Additional Comments From madewokherd(a)gmail.com 2006-02-07 11:52 -------
Dmitry sent some patches that (I thought) were meant to address this issue. They
didn't make it into 0.9.16, but they're working for me in git with firefox's
fullscreen mode.
This seems to work in kwin but not metacity. Wine's desktop integration gap is
just getting larger. ;p
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4449
------- Additional Comments From tom.halligan(a)gmail.com 2006-02-07 11:37 -------
Guys, you do NOT need a Tahoma compatible font, as I just discovered. You can
have any font you like, the Tahoma font is only required by the default Steam skin.
You can edit the skin easily by editing the steamscheme.res file using gedit or
some other such editing program. Just do a search and replace for "Tahoma" and
replace it with a font you know you have installed. Save the file, and restart
steam (if you had it running). No more searching for fonts, no more scratching
heads. I too had tried downloading the tahoma.ttf and it just simply didn't work
for me. This way works though - the only trouble is finding a font that suits
you. Times New Roman (which I have it set to at the mo), looks horrible, but it
is readable, which I guess is better than nothing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5344
wine.dev(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From wine.dev(a)web.de 2006-02-07 09:38 -------
"the app installed and ran" => closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5582
Summary: regression: Goofball can't initialize 3d
Product: Wine
Version: CVS
Platform: Other
URL: ftp://ftp.avault.com/demos/goofball_v1.exe
OS/Version: other
Status: NEW
Keywords: regression, download
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
The application pops up a messagebox: error in renderer initialization.
Regression between wine-20050930 and wine-0.9.2
No consoleoutput
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5580
stefandoesinger(a)gmx.at changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|stefandoesinger(a)gmx.at |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |stefandoesinger(a)gmx.at
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From stefandoesinger(a)gmx.at 2006-02-07 06:44 -------
Yeah, this is related to the rewrite and the "Passing a surface pointer not
supported" message. I will download this demo and implement the neccessary
features. I didn't implement them by now because I didn't know any apps which
I could use for testing, so I decided to write the message and crash
immediately instead of having diffuse crashes somewhere later.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=5581
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-02-07 05:39 -------
So this is a bug in a FreeBSD kernel. Wrong place for the report?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5402
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-02-07 04:55 -------
1. Could you try if running with native msvcrt makes any differnce? (copy
msvcrt.dll from a windows partition or from www.dlldump.com and put it in
~/.wine/drive_c/windows/system32/ and run with WINEDLLOVERRIDES="msvcrt=n" wine
app.exe)
2. Is theere a download link for this program, in case it's freeware/demo?
Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5581
Summary: Crash kernels at start Mirc32.exe
Product: Wine
Version: 0.9.6.
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: onegin(a)tagnet.ru
Start of program MIRC32.exe leads to a stop of a kernel of system.
FreeBSD 6.0.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5580
madewokherd(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |stefandoesinger(a)gmx.at
------- Additional Comments From madewokherd(a)gmail.com 2006-01-07 20:09 -------
This is probably related to the ddraw rewrite so CCing Stefan.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5580
Summary: regression: Jardinains! doesn't start
Product: Wine
Version: 0.9.16.
Platform: PC
URL: http://www.download.com/3000-2099-10246909.html?tag=lst-
0-1
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
In Wine version 0.9.16, Jardinains! exits with a message box that says "Unknown
runtime exception". The game works in Wine 0.9.15.
I suspect it's something to do with this line of console output:
err:ddraw:IDirectDrawImpl_CreateNewSurface (0x77b2ea40) Using a passed surface
pointer is not yet supported
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5569
------- Additional Comments From wine(a)troy.rollo.name 2006-01-07 16:01 -------
Visual inspection of Dan H's solution suggests it is correct - I would have
done substantially the same thing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5402
------- Additional Comments From bariuspelagic(a)hotmail.com 2006-01-07 15:49 -------
I did a seh,relay trace like you asked. I have no idea what it all means, I
hope it helps. See attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5411
StempUbuntu(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From StempUbuntu(a)gmail.com 2006-01-07 13:23 -------
Work well, thank you.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5526
------- Additional Comments From sterlingchristensen(a)hotmail.com 2006-01-07 11:22 -------
Here's my experience:
wine 0.9.15, desktop @ 32 bpp: sluggish, but not too bad
wine 0.9.15, desktop @ 16 bpp: fast and smooth
wine 0.9.16, desktop @ 32 bpp: excruciatingly slow
wine 0.9.16, desktop @ 16 bpp: seems even faster than 0.9.15@16
I noticed "fixme:xrandr:X11DRV_XRandR_SetCurrentMode Cannot change screen BPP
from 32 to 16" in the wine output. I guess fullscreen 16 bpp -> 32 bpp blitting
isn't very efficient?
With 0.9.16@32, the big animation that covers most of the screen on the main
menu grinds to a halt if you wave the mouse over it enough. Switching to 16 bpp
or downgrading to 0.9.15 fixes this.
With 0.9.16@16, the game seems to slow down noticably when it has to draw hit-
point bars, like when you select or hover over a unit.
With 0.9.16, the mouse leaves droppings (very short lived - like 1 frame) and
flickers. Downgrading to 0.9.15 fixes this.
Reproducable freeze with 0.9.16: Win or lose a Skirmish Game. On the screen
where it shows your score, the text draws way way too slowly and then the audio
starts to broken-record worse and worse until it freezes. Seems to get worse as
more text appears... maybe it's redrawing all the text over and over?
Red Alert 2: Yuri's Revenge 1.001 set to 1024x768
nVidia GeForce FX 5700, driver 1.0.8762
Gentoo, XOrg 7.0
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5574
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-01-07 10:56 -------
Does a normal ./configure && make clean && make depend && make without the
CFLAGS run ok. If so may have been a makefile did not recompile something
related to dbghelp and you could close this bug. If it does crash then a
regression test to find the patch and it will be on the list of things to fix.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5578
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |stefandoesinger(a)gmx.at
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-01-07 10:48 -------
Stefan, i'm pretty sure this regression is because of ddraw rewrite,although i
didn't do regression test yet, so i added you. Hope that's ok.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5411
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From marcus(a)jet.franken.de 2006-01-07 10:48 -------
No.
you can remove the arts driver, rm /usr/lib/wine/winearts.drv.so
and tell your distributor to not compile it in.
ALSA and OSS drivers are working better and are better supported.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5411
StempUbuntu(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From StempUbuntu(a)gmail.com 2006-01-07 10:34 -------
This is not an Arts related bug ! I'm not using kde.
I'm using alsa and esd on Ubuntu Dapper 6.06
I used sudo modprobe snd-seq and now the errors are :
stemp@caderousse:~$ winecfg
ALSA lib pcm_mmap.c:363:(snd_pcm_mmap) mmap failed: Invalid argument
Creating link /home/stemp/.kde/socket-caderousse.
can't create mcop directory
Do I need Arts or KDE to rune wine ?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5578
Summary: Regression: Pacmania 's screen is black
Product: Wine
Version: CVS
Platform: Other
URL: ftp://ftp.avault.com/demos/pacmania2.exe
OS/Version: Linux
Status: UNCONFIRMED
Keywords: regression, download
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
The app opens a black screen, and that's it. In wine-0.9.15 it worked fine.
console output with wine 0.9.15:
fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy AND
fixme:ddraw:DIB_DirectDrawSurface_Blt Unsupported flags: DDBLT_DDFX
With current cvs i only get
fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy
Probably due to ddraw rewrite
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4622
------- Additional Comments From the3dfxdude(a)gmail.com 2006-01-07 09:52 -------
Probably has to do with the ddraw replacement and the message box not being
drawn. Get a log to find out, but don't post anything this bug number. Make a
new one if you are certain there is an issue.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.