http://bugs.winehq.org/show_bug.cgi?id=4521
b.buschinski(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From b.buschinski(a)web.de 2006-13-02 12:31 -------
It seems to be fixed in the todays cvs (20060213)
I dont know if it was your new patch H. Verbeet
if so... great work =)
--
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=4305
bgp(a)cs.elte.hu changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://www.dragonlancetc.com|http://www.dragonlancetc.com
|/forums/attachments/dltcep67|/forums/index.php?action=dla
|.zip |ttach;topic=1299.0;id=174
------- Additional Comments From bgp(a)cs.elte.hu 2006-13-02 11:21 -------
Replaced URL with a less complex program testing only EM_GETLINE and EM_SETOPTIONS.
Source code is also in the 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=4333
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |lats(a)yless4u.com.au
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-13-02 09:41 -------
With the stub in the previous message GoogleEarth gets a bit further. However it
then crashes. There seems to be a problem in Scriptitemize.Now i saw this patch
on wine-patches mailing list:
http://www.winehq.org/pipermail/wine-patches/attachments/20060213/a3bd60d9/…
(Note: you have to do "autoconf" first before you can get wine compile it)
Although the text is screwed up , GoogleEarth doesn't crash anymore, so i'd say
that _is_ some progress. Jeff ,I've added you to this bug, could you convert the
patch in something that helps GoogleEarth to run fine? I'll attach a screenshot
hereafter. Thanks
(Note googleearth still needs native msvcrt the first time you run it)
--
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=4038
------- Additional Comments From bo(a)bjornsen.org 2006-13-02 09:32 -------
I had the same problem with Archlinux current, kernel 2.6.15.4,
eac-0.95b3-cdrdao and wine 0.9.7.
Downloading and using the non-cdrdao version of EAC (eac-0.95b3) fixed it.
--
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=4561
chris.bainbridge(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|winecfg crashes first time |winecfg crashes with ATI
|run |fglrx kernel driver
------- Additional Comments From chris.bainbridge(a)gmail.com 2006-13-02 07:30 -------
This problem only happens with the ATI kernel driver fglrx. I have tried both
with the xorg framebuffer driver, and with the xorg driver without the kernel
module loaded, and both result in winecfg working without error.
I tried to run valgrind on winecfg and got a kernel crash.
This probably isn't a bug in wine. I'll file a bug on the ati bugzilla. My
ati-drivers is 8.22.5.
I've found two similar reports:
https://www.redhat.com/archives/fedora-list/2005-September/msg00718.htmlhttp://www.driverheaven.net/archive/index.php/t-80867.html (bottom post)
--
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=4436
------- Additional Comments From J.A.Gow(a)furrybubble.co.uk 2006-13-02 07:25 -------
Nice ASCII art :)
This is close to what I had in mind, but the problem I found was to ensure that
well-behaved apps (i.e. ones that correctly call IStream_Release before
IStorage_Release) worked as well as badly behaved ones (that called
IStorage_Release and expected all streams to be closed and destroyed at this
time) without either creating an object leak.
As I see it this requires the following behaviour:
We maintain the list of stream objects in the storage object. When the storage
destructor is called, before killing the storage object we iterate the list of
stream objects. If any are left (badly behaved app) we kill them by calling the
IStream destructor for each object in the list, before killing the storage object.
Now this is OK, except for the case of a well behaved app that correctly calls
the stream object destructor before the storage object destructor. In this case,
the stream object destructor will have to inform the storage object that the
stream object should be removed from the list of stream objects maintained by
the storage object. If the stream object is not removed from the list, when the
storage object destructor is called it will attempt to kill the
already-destroyed stream object when it finds it in the list. Hey presto- segfault!.
So we need an interface by which a stream object can communicate its imminent
destruction to the storage object in which it lives - the direction of
communication would be stream object -> storage object.
And it is here where I am not sure how to proceed. I have the list management
stuff coded in the storage object but I need advice on how best to introduce an
interface for communication between a stream object destructor and the storage
object in which it resides.
In your suggestion, it seems that we are not killing the outstanding stream
objects when the outstanding Storage objects are destroyed. Surely this would
guarantee a memory leak for a badly behaved app? Since it would seem no app
would explicitly destroy the stream object and then afterwards try and use the
streams created within it during its scope, would it not make more sense to kill
outstanding streams with closure of the storage object and avoid the memory
leak? I agree it breaks the object rules somewhat, but then it looks like
Windows does too!
--
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=4559
chris.bainbridge(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From chris.bainbridge(a)gmail.com 2006-13-02 07:01 -------
This goes away when I use framebuffer driver, is a dupe of my other bug report.
*** This bug has been marked as a duplicate of 4561 ***
--
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=4561
------- Additional Comments From chris.bainbridge(a)gmail.com 2006-13-02 07:01 -------
*** Bug 4559 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=4561
------- Additional Comments From chris.bainbridge(a)gmail.com 2006-13-02 06:14 -------
I have tried the binary on the same platform but different PC and it works.
There is something odd going which seems hardware specific (the only major
differences I can think of are that I'm using ati binary drivers). I'll retry
without the ati drivers.
--
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=4561
chris.bainbridge(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Platform|Other |PC
Version|0.9.7. |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=4570
Summary: dbghelp.dll.so: symbol regexec not defined in libc.so.6
Product: Wine
Version: 0.9.7.
Platform: PC
URL: http://www.ag.ch/steueramt/de/pub/angebote/steuererklaer
ungen.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: moz(a)liebesgedichte.siteware.ch
The programm EasyTax 2005 (get a free version from the provided link) fails with
the following output:
wine "C:\Program Files\EasyTax\AG2005\EasyTax2005_AG.exe"
err:ole:CoGetClassObject class {00000514-0000-0010-8000-00aa006d2ea4} not registered
err:ole:create_server class {00000514-0000-0010-8000-00aa006d2ea4} not registered
fixme:ole:CoCreateInstance no classfactory created for CLSID
{00000514-0000-0010-8000-00aa006d2ea4}, hres is 0x80040154
wine: Unhandled exception 0x0eedfade at address 0x0000:0x7fcb08d0 (thread 0009),
starting debugger...
err:module:load_builtin_dll failed to load .so lib for builtin L"dbghelp.dll":
/usr/lib/wine/dbghelp.dll.so: symbol regexec, version GLIBC_2.3.4 not defined
infile libc.so.6 with link time reference
err:module:import_dll Loading library dbghelp.dll (which is needed by
L"C:\\windows\\system32\\winedbg.exe") failed (error c000007a).
err:module:LdrInitializeThunk Main exe initialization for
L"C:\\windows\\system32\\winedbg.exe" failed, status c0000135
Is this a compatibility problem with the glibc of debian stable or a something
else? Using the builds from http://wine.sourceforge.net/apt/. Any help appreciated.
--
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=4558
------- Additional Comments From Speeddymon(a)gmail.com 2006-12-02 23:42 -------
what winver are you using? if it is win98, try changing it to winxp or win2k.
--
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=4562
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-02 23:16 -------
You know better then anyone else that there are stuff that is not so important.
This being one of them.
--
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=4561
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-02 23:15 -------
Please install NOT STRIPPED wine and _attach_ back trace again.
Olse update your HW/OS. And specify distro.
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=4559
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-02 23:12 -------
This looks like a Bug 4051. But Wine should not crash anymore. Are you sure you
are using the wine-0.9.7? (You don't have more then one version installed).
--
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=4333
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|GoogleEarth: crash in usp10 |GoogleEarth: fails with
| |builtin usp10
------- Additional Comments From dank(a)kegel.com 2006-12-02 21:55 -------
Changed 'crash' to 'fails'. (I don't think this quite qualifies as a crash,
since there's no "unhandled exception" or "backtrace" in the log.)
--
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=4569
Summary: Oregon Trail 5 refuses to install, wants DirectX 8
Product: Wine
Version: CVS
Platform: Other
URL: http://www.broderbund.com/jump.jsp?itemType=PRODUCT&item
ID=147
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
1. Order the trial version of Oregon Trail
from Broderbund's site. (You can get it
from other sites as well, but they use a strange
ActiveX app to do the real download, which
doesn't work well in wine.) After registering
they let you download it. Better have a fast
connection, it's big!
2. Run the 550MB (566411841 byte) Oregon Trail installer.
Click 'ok' to first screen. It will
complain that you don't have DirectX 8.
Not sure how it detects what version of
DirectX we have, but whatever it's doing we
seem to be handling wrong.
--
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=4543
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From mike(a)codeweavers.com 2006-12-02 21:18 -------
The patch this solves the bug that you submitted. It's better to open a new bug
for the new problem you see, because it maybe totally unrelated to the problem I
solved.
I'll close this bug when the patch the prevents the crash is applied to 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=4436
------- Additional Comments From mike(a)codeweavers.com 2006-12-02 21:11 -------
> I could introduce a private interface, but this would only work if an IStream
> could be guaranteed only ever to be created as a child of an IStorage - this
> would break encapsulation.
There are many implementations of IStream (some that are not related to an
IStorage), however the OLE storage implementation that you're dealing with will
always be created from IStorage_OpenStream or IStorage_CreateStream.
IStream is an interface, not a class of object. OLE Object classes can have
many interfaces, and two objects classes can have different implementations of
the same interface.
I think you want (sorry for the poor ascii art):
.------------------.
| |
| OLE storage obj |O--- IUnknown
| |
| list of |O--- IStorage
| stream objs |
| |
'------------------'
|
private .--------------------.
| | |O--- IUnknown
'------| OLE stream object |
| has pStorageImpl |O--- IStream
'--------------------'
O--- denotes a COM interface to an object
When IStorage is destroyed, iterate its list of stream objects, and set their
pStorageImpl to NULL (we know their flavour, since they're objects that we
created with IStorage_OpenStream).
You might need some more tests to see the behaviour of a stream object when it's
parent storage has been released.
--
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=4568
Summary: Crash in X11DRV_DIB_SetImageBits when starting Gimp
Product: Wine
Version: CVS
Platform: Other
URL: http://gimp-win.sourceforge.net/stable.html
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Install the two packages
The GIMP for Windows (version 2.2.10) (md5 e8c78b01d136ca920aa05a563808d239)
and GTK+ 2 Runtime Environment (version 2.8.9, for Windows 2000 and newer;
updated installer) (md5 eaf627c981f6685a54a1714c25bf63b5)
from
http://gimp-win.sourceforge.net/stable.html
Start Gimp. It crashes with following stack trace:
Unhandled exception: page fault on write access to 0x2a62fbd4 in 32-bit code
(0xf6ee94dc). ...
Backtrace:
=>1 0xf6ee94dc (0xf6ee94dc)
2 0x7c7f0552 X11DRV_DIB_SetImageBits [/home/dank/wine/dlls/x11drv/dib.c:2994]
in winex11 (0x7c7f0552)
3 0x7c7f3a27 X11DRV_DIB_DoCopyDIBSection+0x107(physBitmap=<register not in
topmost frame>, toDIB=<register not in topmost frame>, colorMap=0x0,
nColorMap=0x0, dest=0x2a0013a, gc=0x7c9078c8, xSrc=0x0, ySrc=0x0, xDest=0x0,
yDest=0x0, width=0x16d1, height=0x76e6) [/home/dank/wine/dlls/x11drv/dib.c:4231]
in winex11 (0x7c7f3a27)
4 0x7c7f3dc6 X11DRV_DIB_DoUpdateDIBSection(physBitmap=<register not in topmost
frame>, toDIB=<register not in topmost frame>)
[/home/dank/wine/dlls/x11drv/dib.c:4300] in winex11 (0x7c7f3dc6)
5 0x7c7f426f X11DRV_DIB_Coerce+0x29b(physBitmap=<register not in topmost
frame>, req=<register not in topmost frame>, lossy=0x0)
[/home/dank/wine/dlls/x11drv/dib.c:4386] in winex11 (0x7c7f426f)
...
I'll upload the full log.
--
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=4556
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From mike(a)codeweavers.com 2006-12-02 20:43 -------
dup
*** This bug has been marked as a duplicate of 4543 ***
--
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=4543
------- Additional Comments From mike(a)codeweavers.com 2006-12-02 20:43 -------
*** Bug 4556 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=4567
Summary: richedit:RichEditANSIWndProc EM_SCROLLCARET: stub
Product: Wine
Version: CVS
Platform: PC
URL: http://nsis.sourceforge.net/Download
OS/Version: Linux
Status: NEW
Keywords: download, source, FIXME
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
While testing NSIS 2.14 (http://appdb.winehq.org/appview.php?versionId=1508):
wine c:\\Programme\\NSIS\\makensisw.exe
detlef@p4:~/wine.cvs/drive_c/Programme/NSIS$ wine makensisw
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub
fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub
fixme:richedit:RichEditANSIWndProc EM_SCROLLCARET: stub
Test the App:
(I used the ZIP-Archive "vlc-0.8.4a-win32.zip" from
http://www.videolan.org/vlc/download-windows.html)
-Menu "Tools" -> "Settings":
Define Variable "VERSION" with the Value "0.8.4a"
-Menu "File" -> "Load Script"
Select "vlc.win32.nsi" from where you unpacked vlc and wait
While the Package is created, makensisw.exe print lots of:
fixme:richedit:RichEditANSIWndProc EM_SCROLLCARET: stub
--
By by ... Detlef
--
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=4566
Summary: shell:SHAutoComplete SHAutoComplete stub
Product: Wine
Version: CVS
Platform: PC
URL: http://nsis.sourceforge.net/Download
OS/Version: Linux
Status: NEW
Keywords: download, source, FIXME
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
While testing NSIS 2.14 (http://appdb.winehq.org/appview.php?versionId=1508):
$ wine apps/_install/nsis-2.14-setup.exe
(when the "Choose Install Location" - Window comes up:)
fixme:shell:SHAutoComplete SHAutoComplete stub
--
By by ... Detlef
--
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=4565
Summary: richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub
Product: Wine
Version: CVS
Platform: PC
URL: http://nsis.sourceforge.net/Download
OS/Version: Linux
Status: NEW
Keywords: download, source, FIXME
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
While testing NSIS 2.14 (http://appdb.winehq.org/appview.php?versionId=1508):
$ wine apps/_install/nsis-2.14-setup.exe
(when the License-Window comes up:)
fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub
fixme:richedit:RichEditANSIWndProc EM_AUTOURLDETECT: stub
fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub
--
By by ... Detlef
--
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=4564
Summary: richedit:RichEditANSIWndProc EM_AUTOURLDETECT: stub
Product: Wine
Version: CVS
Platform: PC
URL: http://nsis.sourceforge.net/Download
OS/Version: Linux
Status: NEW
Keywords: download, source, FIXME
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
While testing NSIS 2.14 (http://appdb.winehq.org/appview.php?versionId=1508):
$ wine apps/_install/nsis-2.14-setup.exe
(when the License-Window comes up:)
fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub
fixme:richedit:RichEditANSIWndProc EM_AUTOURLDETECT: stub
fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub
--
By by ... Detlef
--
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=4563
Summary: richedit:RichEditANSIWndProc WM_SETFONT: stub
Product: Wine
Version: CVS
Platform: PC
URL: http://nsis.sourceforge.net/Download
OS/Version: Linux
Status: NEW
Keywords: download, source, FIXME
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
While testing NSIS 2.14 (http://appdb.winehq.org/appview.php?versionId=1508):
$ wine apps/_install/nsis-2.14-setup.exe
(when the License-Window comes up:)
fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub
fixme:richedit:RichEditANSIWndProc EM_AUTOURLDETECT: stub
fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub
--
By by ... Detlef
--
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=4562
Summary: fixme:win:SetWindowTextA setting text "...." of other
process window
Product: Wine
Version: CVS
Platform: PC
URL: http://nsis.sourceforge.net/Download
OS/Version: Linux
Status: NEW
Keywords: download, source, FIXME
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Testing NSIS 2.14 (http://appdb.winehq.org/appview.php?versionId=1508):
dosdevices/c:$ wine nsis-2.14-setup.exe
(2 times: "Installer Language"-Window and Welcome-Window)
fixme:win:SetWindowTextA setting text "NSIS 2.14 Setup" of other process window
(nil) should not use SendMessage
(On Installation-Cleanup 5 times)
fixme:win:SetWindowTextA ...
--
By by ... Detlef
--
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=4487
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|C&C and Red Alert stop |C&C and Red Alert stop
|redrawing at random times |redrawing at random times
|(HyperThreading?) |(SMP/HyperThreading)
--
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=4487
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|C&C and Red Alert stop |C&C and Red Alert stop
|redrawing at random times |redrawing at random times
| |(HyperThreading?)
------- Additional Comments From alex(a)thehandofagony.com 2006-12-02 17:03 -------
It works fine if I disable HyperThreading. Can someone with more than one CPU
test it to see if it is not an SMP 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=4560
Summary: Money 2004 crashes when Monthly Report is run
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ajp(a)princeswalk.fsnet.co.uk
When a Monthly report is run an message box appears with "Microsoft Money has
encountered a problem and needs to close...". Clicking on the Close button
closes Money. The following message is produced by Wine:
err:shell:IPersistStream_fnLoad Last word was not zero
--
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=4559
chris.bainbridge(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|winecfg crashes when no |winecfg crashes with arts
|audio sequencer present |driver
--
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=4559
------- Additional Comments From chris.bainbridge(a)gmail.com 2006-12-02 14:12 -------
The crash isn't because of the missing device. I added sequencer to my kernel
and still get the crash. Following
http://www.nabble.com/Re:-New-Winecfg-crash-p1876621.html I disabled
winearts.drv.so and no longer get the crash, so something must be buggy with the
arts driver. I'm using arts-3.4.3 on Gentoo.
--
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=4436
------- Additional Comments From J.A.Gow(a)furrybubble.co.uk 2006-12-02 13:46 -------
Hmm, I've been doing some digging in the ole32 source. The first thing I tried
is to remove the calls to AddRef for the parent object in the IStream
constructor and destructor. This fixes the app, i.e. it runs, as now the file is
closed when the IStorage object is deleted. However, it is not a viable fix as
now we leak IStream objects that never get deleted until the process is terminated.
I have a couple of proposals to mention: I don't mind writing some code but I'd
like some guidance in order not to go down the wrong path and waste time. Please
let me know what you think:
1) Each IStorage object maintains a list of 'active' IStream objects that are
opened/created and contained within this IStorage object. Upon deletion of the
IStorage, all child IStreams are also destroyed, thereby preventing the memory
leak. This part is easy (I have already coded and tested this) but the problem
occurs when a well-behaved app actually does destroy the IStream before the
IStorage. There needs to be some communication path between the IStream object
and the IStorage object during execution of the IStream object destructor in
order to remove the outgoing IStream from the IStorage's list of 'active'
IStreams. Problem is, (and here my lack of knowledge of the Windows COM stuff
hinders me) is that there is no published interface I can use. I could introduce
a private interface, but this would only work if an IStream could be guaranteed
only ever to be created as a child of an IStorage - this would break
encapsulation. The other way would be to introduce another interface to
IUnknown, so that IStream could call a method in its ancestor and the method
would be guaranteed to exist, but would only be effective for an IStorage ancestor.
2) This would use a list similar to (1), but the list would exist in process
global space outside the object hierarchy. As far as I can see this would bring
with it a whole slew of issues related to multithreaded access to the list. Or
would it? Is the ole32 API designed to be single-threaded? I am not sure, but if
it is not, what locks would I need to use to mutex access to the list?
The first option would be my first choice, providing a workaround to avoid
breakage of encapsulation can be found.
--
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=4559
Summary: winecfg crashes when no audio sequencer present
Product: Wine
Version: 0.9.7.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris.bainbridge(a)gmail.com
Clicking audio tab crashes winecfg. Console output is:
ALSA lib seq_hw.c:455:(snd_seq_hw_open) open /dev/snd/seq failed: No such file
or directory
*** glibc detected *** free(): invalid pointer: 0x7c145e10 ***
wine: Assertion failed at address 0xffffe410 (thread 0009), starting debugger...
--
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=4558
Summary: Some numeric keypad keys don't work in user mode
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-console
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: russlehman(a)4dv.net
The "Enter" and "/" keys on the numeric keypad don't work in wineconsole in user
mode. This happened on wcmd.exe.so, WinXP native cmd.exe and a windows console
application that I wrote myself. The keys in question work in the ncurses mode
of wineconsole and in streams mode in wine. Interestingly, this appears to
duplicate a bug in Windows 9x when running console mode (but not DOS)
applications. At least, the numeric keypad enter key also doesn't work in Win9x.
I don't remember whether the "/" key worked. It's been about 2 years since I
have used Win9x.
--
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=4557
Summary: Regression: C&C Gold autorun doesn't work
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Keywords: regression
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
The autorun program of 'Command & Conquer Gold' does not work; it plays a second
of the audio file that it is supposed to play, and then I am returned to the
console. In Wine 0.9.5, the program worked fine, including the sound.
--
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=4543
------- Additional Comments From brolin_empey(a)medallionsystem.com 2006-12-02 12:11 -------
First of all, sorry for all of the duplicate bugs. Unlike Firefox and
Konqueror, Opera apparently does *not* warn you when you are reloading a page
that contains POST data. So I kept reloading the page showing a newly submitted
bug to check for updates, completely unaware of the fact that I was submitting
duplicate bugs. I should probably tell Opera Software about this problem.
In response to comment #4: Thanks, this patch *does* prevent the crash. The
sub-pixel rendered version of the text on the third screen/page does not
display, though: the bottom box is solid black.
--
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=4551
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)gmail.com 2006-12-02 12:08 -------
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=4551
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From Speeddymon(a)gmail.com 2006-12-02 12:08 -------
This would probably be better mentioned on the wine-devel list.
Forwarding to wine-devel, please reply to all comments and inquiries on 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=4542
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-12-02 11:17 -------
Could you please add an entry for this application for this application.
http://appdb.winehq.org/
--
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=4322
mjung(a)iss.tu-darmstadt.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From mjung(a)iss.tu-darmstadt.de 2006-12-02 11:17 -------
Starting with Wine 0.9.7, the Desktop Folder is symlinked from the user's
profile directory to $HOME/Desktop. Thus, wine is not dependend on a drive based
path to the user's home directory anymore.
--
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=4552
------- Additional Comments From phil(a)mail.ru 2006-12-02 10:44 -------
The download server times out. Anyway, could you create a trace with
WINEDEBUG=+richedit,+message and attach it here?
--
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=4552
------- Additional Comments From Basic-Master(a)gmx.net 2006-12-02 09:33 -------
Well, I expected to see the colored text, not the RTF text itself. I attached a
screenshot which shows how it looks like when running it with Wine to show what
I mean. It works perfectly under Windows and displays the texts properly, that
is, I don't see any RTF texts there. Hrm, I cannot say how you could reproduce
this bug, I just started HLSW and noticed that there's this bug.
Anyway, here's the DL link:
http://www.hlsw.de/index.php?url=hlsw_download&move=download&download_id=37…
--
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 alex(a)thehandofagony.com 2006-12-02 08:28 -------
It is sufficient to just start the demo installer, and abort it when it displays
the welcome screen.
--
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=3879
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |alex(a)thehandofagony.com
------- Additional Comments From alex(a)thehandofagony.com 2006-12-02 07:53 -------
*** Bug 4554 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=4554
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From alex(a)thehandofagony.com 2006-12-02 07:53 -------
There's another bug report on specular lighting, although the application
mentioned in it does not crash.
*** This bug has been marked as a duplicate of 3879 ***
--
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=4555
Summary: SecureFX crash when browsing remote folder
Product: Wine
Version: 0.9.7.
Platform: PC
URL: http://www.vandyke.com/download/securefx/index.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrea.gabellini(a)telecomitalia.sm
Wine 0.9.7 (Package from SF)
Suse 10
SecureFX 3.0.4: http://www.vandyke.com/download/securefx/index.html
Command: wine "c:\\Program Files\\SecureFX\\SecureFX.exe"
This bug follows bugs 4225. I decided to open a new bug due to the note about
WineTools. Infact bug 4225 has been openen with WineTools.
I started with a fresh installation of Wine 0.9.7. SecureCRT installs and runs
fine. SecureFX also installs and runs fine, but after a connection with a remote
host it crash when browsing remote folders.
The output of the crash follows.
Andrea
--
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=4519
------- Additional Comments From ivg2(a)cornell.edu 2006-12-02 07:02 -------
Well, whatever evilness is happening, it's most likely find in this 20000-line
+relay,+resource segment for FEAR. I stared at it for about a few hours, and I
still can't understand what's going on.
I suspect oleaut's "dispatch_execption" (spelled as in trace), and
"com_exception" have something to do with it.
--
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=4554
Summary: Settlers IV crashes due to specular lighting
Product: Wine
Version: 0.9.7.
Platform: PC
URL: http://appdb.winehq.org/appview.php?versionId=4094
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
The Settlers IV crashes when using its landscape hardware engine (the game's
default) because specular lighting is not implemented.
There is a demo available; see the AppDB page for information on how to download
and run it.
--
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=4553
Summary: Future Cop doesn't start (quartz?)
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
When starting Future Cop L.A.P.D., a window with blackness in it appears for a
few seconds, and then disappears. The following output is given on the console
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x7fe240a8)->(0x10022,00000008)
fixme:ddraw:DIB_DirectDrawSurface_Blt Can't handle DDBLT_WAIT flag right now.
fixme:wave:DSD_CreateSecondaryBuffer
(0x7fe24e80,0x7fd5fbd0,100e8,0,0x7fe558c4,0x7fe24f9c,0x7fe558a0): stub
epoll_ctl: Operation not permitted
err:quartz:GetClassMediaFile Media class not found
err:quartz:GraphBuilder_AddSourceFilter Load (80004005)
epoll_ctl: Operation not permitted
err:quartz:GetClassMediaFile Media class not found
err:quartz:GraphBuilder_AddSourceFilter Load (80004005)
Note that the demo 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=4297
------- Additional Comments From tbretz(a)astro.uni-wuerzburg.de 2006-12-02 05:36 -------
I get the following running CorelDraw 8 (which runs fine anyhow)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=0,scanCode=0,keycode=8,state=0)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=0,scanCode=0,keycode=8,state=1)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym FEF9
(Pointer_EnableKeys) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=90,scanCode=45,keycode=4D,state=1)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=FC,scanCode=0,keycode=0,state=0)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=FC,scanCode=0,keycode=0,state=1)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=0,scanCode=0,keycode=8,state=0)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=0,scanCode=0,keycode=8,state=1)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym FEF9
(Pointer_EnableKeys) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=90,scanCode=45,keycode=4D,state=1)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=FC,scanCode=0,keycode=0,state=0)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=FC,scanCode=0,keycode=0,state=1)
--
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=4386
tbretz(a)astro.uni-wuerzburg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|NoAppDBEntry |
Version|0.9.6. |0.9.7.
------- Additional Comments From tbretz(a)astro.uni-wuerzburg.de 2006-12-02 05:28 -------
Entry created
--
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=4387
tbretz(a)astro.uni-wuerzburg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|NoAppDBEntry |
Version|0.9.6. |0.9.7.
------- Additional Comments From tbretz(a)astro.uni-wuerzburg.de 2006-12-02 05:20 -------
Entry created.
--
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=4552
------- Additional Comments From mike(a)codeweavers.com 2006-12-02 05:15 -------
How do you reproduce the bug? What do you expect to see? What's the exact
download link? Isn't the "formatted text" what we want?
--
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=3675
fasici(a)linux-sevenler.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From fasici(a)linux-sevenler.org 2006-12-02 05:10 -------
this is fixed in wine 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=4552
Summary: RichEdit RTF bug
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Basic-Master(a)gmx.net
Hello,
the RichEdit control in Wine doesn't show your RTF text correctly, that is, it
doesn't show the actual output, only the formatted text. Download HLSW
(www.hlsw.org - a free game tool) and you'll see what I mean.
Thanks
--Christian
--
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=4551
Summary: representation of virtual hardware in desktop managers
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-resources
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tpfennig(a)gmail.com
Nowadays on Linux you do not see your virtual wine hardware drives in KDE or
GNOME because they are not recognized. You have to open "invisible" folder
"$HOME/.wine". Many users will not be able to do this.
Maybe one could work out some standard with freedesktop.org so that users can
easily access their virtual drive C:\ ? Who's work would that be? I am not sure
about that, so sorry if this is not the right "inbox". I would liek to suggest
to extend this standard to other virtual machines like Xen or Vmware.
Thilo Pfennig
--
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=4544
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-12-02 03:14 -------
.
*** This bug has been marked as a duplicate of 4543 ***
--
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=4543
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-12-02 03:14 -------
*** Bug 4544 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=4545
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-12-02 03:13 -------
.
*** This bug has been marked as a duplicate of 4543 ***
--
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=4543
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-12-02 03:13 -------
*** Bug 4545 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=4546
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-12-02 03:12 -------
.
*** This bug has been marked as a duplicate of 4543 ***
--
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=4543
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-12-02 03:12 -------
*** Bug 4546 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=4550
Summary: CPU runs at 100% when mouse cursor hovers above
Starcraft map editor.
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: z77y16(a)hotmail.com
I noticed the CPU usage stays at 100% when my mouse cursor is anywhere inside
Starcraft map editor. If I bring a console window on top and move my cursor
inside, cpu usage drops. Cpu usage returns at 100% when my cursor returns into
the map editor (I'm using focus follows mouse).
Maybe related to 4548?
--
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=4547
------- Additional Comments From z77y16(a)hotmail.com 2006-11-02 22:53 -------
I tried 0.9, 0.9.1, 0.9.4, 0.9.6. None of them support hyperlinks in staredit.
--
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=4549
Summary: Starcraft cannot be updated through Battle Net.
Product: Wine
Version: 0.9.7.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: z77y16(a)hotmail.com
After installing Starcraft, logging on Battle Net for the first time will try to
update the game with the latest patch. The first thing you will notice is that
the menus don't display very well (already known : #2467). Click on "ok" to
continue (needs to be done twice I think). Nothing will happen.
Workaround: download the patch and apply manually.
--
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=4548
Summary: Starcraft does not feel responsive.
Product: Wine
Version: 0.9.7.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: z77y16(a)hotmail.com
Starcraft is much more responsive on a Windows 2000 system running on a P3
500MHz than it is on my Celeron 1.4 GHz on Fedora Core 4 + Wine 0.9.7. If you
have access to the game on both OS, here is two simple comparisons you can do:
- Drag the cursor around the screen and see how it feels. It is much smoother on
Windows.
- Navigate in the game menus and see how faster menus slide in/out on Windows.
I don't consider Starcraft playable 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=4547
Summary: Hyperlinks in text boxes do not work.
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: z77y16(a)hotmail.com
In Starcraft map editor, trigger conditions are detailed in a text box after
they are selected. They are summarized with a sentence in which some words are
underlined and colored in blue. These words are hyperlinked. Clicking on them
normally pops a window in which you make a choice to build your trigger.
Clicking on these hyperlinks currently does not work. These words are considered
as normal text.
--
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=4436
------- Additional Comments From mike(a)codeweavers.com 2006-11-02 20:55 -------
I agree with your analysis, and that we should change the way Wine's IStorage
works to match the way Windows works.
I still think the program will have a memory leak because of this problem, since
the rules of COM say that the interface can't disappear before it is released.
--
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=4436
------- Additional Comments From J.A.Gow(a)furrybubble.co.uk 2006-11-02 15:22 -------
Ah - I think I misunderstood you with respect to the IStorage_Release() calls.
Yes, ideally one should call IStream_Release followed by IStorage_Release, and
that works on Windows and Wine. However, some apps, including this one, do _not_
appear to do this - they simply call IStorage_Release once. This closes the file
and (it appears) all streams within it. The problem occurs under Wine when the
app calls IStorage_Release to close the file and all streams, Wine does not
close the file because streams are still open (reference held by each stream).
Then, when the app subsequently tries to reopen the storage file, it fails on
access violation because Wine has held the file open pending explicit closure of
the streams.
The bottom line is that Windows seems to have a mechanism by which when
IStorage_Release is called, the file and all open IStreams are implicitly closed
with it. Apps take advantage of this. Wine, however does it properly - but this
does not match the Windows mechanism!
--
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=4542
------- Additional Comments From dank(a)kegel.com 2006-11-02 11:02 -------
gaah, typo, it's really CRYPT32.dll/CryptQueryObject
--
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=4542
Summary: Google Video Player aborts with import error on
CryptQueryObject
Product: Wine
Version: 0.9.7.
Platform: Other
URL: http://video.google.com/playerdownload.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
Google Video Player installs fine, but
aborts on startup with the dialog box
"DLL function import error: CRYPTE32.dll/CryptQueryObject"
--
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=4526
------- Additional Comments From tony.lambregts(a)gmail.com 2006-11-02 09:00 -------
Please submit this patch to wine-patches(a)winehq.org
--
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=4541
Summary: WinMDI does not run on wine newer than 20050725
Product: Wine
Version: 20050930
Platform: PC
URL: http://appdb.winehq.org/appview.php?versionId=4262
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: parsonsl(a)upstate.edu
I have been running winMDI with wine on FreeBSD 6.0, and have found that it
only runs on wine versions of 20050725 or earlier. Errors that are given by
newer wine versions are reported in the appdb entries.
--
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=4540
Summary: internet explorer 6 crashs
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nivw2002(a)fastmail.fm
Hi,
I have a healty gentoo system using kernel 2.6.15 with the CK patchs.
I ran the script to have internet explorer 6 and I can load it.
but when I put www.google.com it crashs:
-- quote ---
$ ie6
err:shell:ReadCabinetState Initializing shell cabinet settings
err:rebar:REBAR_WindowProc unknown msg 200b wp=00000000 lp=711888bc
err:rebar:REBAR_Layout no redraw and client is zero, skip layout
wine: Unhandled page fault on read access to 0x00000b40 at address 0x70e7b86e (t
hread 0009), starting debugger...
WineDbg starting on pid 0x8
Unhandled exception: page fault on read access to 0x00000b40 in 32-bit code (0x7
0e7b86e).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:70e7b86e ESP:7fbfbeb8 EBP:7fbfc0fc EFLAGS:00210246( - 00 -RIZP1)
EAX:000002d0 EBX:7dc78540 ECX:00000000 EDX:7ffdd2c8
ESI:7dc797f0 EDI:000002d0
Stack dump:
0x00000000: 00000000 00000000 00000000 00000000
0x00000010: 00000000 00000000 00000000 00000000
0x00000020: 00000000 00000000 00000000 00000000
0x00000030: 00000000 00000000 00000000 00000000
0x00000040: 00000000 00000000 00000000 00000000
0x00000050: 00000000 00000000 00000000 00000000
Backtrace:
=>1 0x70e7b86e in mshtml (+0x22b86e) (0x70e7b86e)
2 0x70dc0ac2 in mshtml (+0x170ac2) (0x70dc0ac2)
3 0x70ca2d76 in mshtml (+0x52d76) (0x70ca2d76)
4 0x70ca2126 in mshtml (+0x52126) (0x70ca2126)
err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file msls31.dbg ("msls31.dbg
")
5 0x4808ad28 LsDisplayLine+0x548 in msls31 (0x4808ad28)
6 0x48088c0d LsCreateSubline+0x126 in msls31 (0x48088c0d)
7 0x70d4ef0e in mshtml (+0xfef0e) (0x70d4ef0e)
8 0x4808b2c3 LsDisplayLine+0xae3 in msls31 (0x4808b2c3)
9 0x4808ae2a LsDisplayLine+0x64a in msls31 (0x4808ae2a)
10 0x48087d13 LsCreateContext+0x89b in msls31 (0x48087d13)
11 0x48087c20 LsCreateContext+0x7a8 in msls31 (0x48087c20)
12 0x48087870 LsCreateContext+0x3f8 in msls31 (0x48087870)
13 0x70ca1505 in mshtml (+0x51505) (0x70ca1505)
0x70e7b86e: movl 0x0(%ecx,%eax,4),%eax
Wine-dbg>
---- end of qoute ---
--
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=2999
Andrew.Talbot(a)talbotville.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2006-11-02 06:44 -------
Fixed in wine-0_9_7 by patch dated Thu Jan 26 06:44:21 CST 2006.
--
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 2999, which changed state.
Bug 2999 Summary: Srolling Window Erroneously 'Homes' After Posting
http://bugs.winehq.org/show_bug.cgi?id=2999
What |Old Value |New Value
----------------------------------------------------------------------------
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=3724
------- Additional Comments From CaptainSifff(a)gmx.de 2006-11-02 03:58 -------
I've tested it with XForce version 0.903 now.
It justs terminates upon starting with a "Sharing Violation".
wines Output:
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel
(0x7fd41ae0)->(0x2002a,00000053)
fixme:x11drv:X11DRV_DDHAL_CreatePalette stub
fixme:ddraw:DIB_DirectDrawSurface_Blt Can't handle DDBLT_WAIT flag right 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=2798
------- Additional Comments From CaptainSifff(a)gmx.de 2006-11-02 03:39 -------
Still present in a cvs-wine of today(11.02.06)
Same Error-Output
--
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=4539
Summary: changing screen resolution abord BridgeBuilder
Product: Wine
Version: 0.9.7.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: volker(a)dirr-computer.de
Hallo
I used wine 0.9.7, Mandriva 2006 and nVidia display Drivers 76.76
I startet BridgeBuilder. The game is fully playabel.
I tried to change screen resolution.
wine abord with following messages:
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x7fdd1540)->((nil),00000008)
fixme:opengl:wglChoosePixelFormatARB unused pfAttribFList
fixme:opengl:wglChoosePixelFormatARB unused pfAttribFList
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 144 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 277
Current serial number in output stream: 277
i tried to make a WINEDEBUG=+relay, but i believe it is incompleted.
wine relay was running several hours and the relay log is ~65 GB hugh.
the relay abord not with the messages like simply using wine (see above).
it abord with "getötet" (translation: "killed"). i do not know who killed the
task. Maybe my system is just overloaded. (i didŽt run other tasks)
i attach the last lines from relay-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=1631
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ivg2(a)cornell.edu
------- Additional Comments From tony.lambregts(a)gmail.com 2006-10-02 21:11 -------
*** Bug 4537 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=4537
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony.lambregts(a)gmail.com 2006-10-02 21:11 -------
Duplicate
*** This bug has been marked as a duplicate of 1631 ***
--
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=4538
Summary: FolderShare crashes when trying to connect to network
Product: Wine
Version: 0.9.7.
Platform: PC
URL: https://www.foldershare.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tony.lambregts(a)gmail.com
CC: ivg2(a)cornell.edu
When FolderShare attempts to log into the network it crashes with the following
message box.
Wine C++ Runtime Library
Assertion Failed!
Program: C:\Program files\FolderShare\FolderShare.exe
File: C:\system\clientCore\connection.c
Line: 1868
Expression: 'pConn->state != CONN_FAILED"
Press OK to exit the program, of Cancel to start the Wine debugger
--
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=4527
jjk3(a)msstate.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #1869 is|0 |1
obsolete| |
--
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=4527
------- Additional Comments From jjk3(a)msstate.edu 2006-10-02 20:34 -------
I will. Just for the record, the proposed patch is bad. We should take the
semicolons out of the source file, not the header def.
--
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=4530
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.foldershare.com/d
| |ownload/index.php
Status|UNCONFIRMED |RESOLVED
Keywords| |download
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-10-02 20:31 -------
It installs with wine 0.9.7 but it crashes when it tries to log into the network :(
--
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=4509
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.easyct.de/
------- Additional Comments From tony.lambregts(a)gmail.com 2006-10-02 19:49 -------
Thankyou for tha Appdb Entry
--
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=4527
------- Additional Comments From tony.lambregts(a)gmail.com 2006-10-02 19:30 -------
Please submit your patch to wine-patches(a)winehq.org
--
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=4537
Summary: Stuttering noise in James Bond: Nightfire demo [ DSOUND
].
Product: Wine
Version: 0.9.7.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivg2(a)cornell.edu
James Bond: Nightfire (the demo) starts up with a white screen, and a very
annoying stuttering noise (repeats very fast). It does not seem to get past the
white screen (at least not in a reasonable amount of time, maybe it's just being
slow - either way, this noise is driving me crazy).
Output:
fixme:d3d:IWineD3DImpl_CreateDevice (0x7fd3fd98) Incomplete stub for d3d8
fixme:d3d_caps:IDirect3D8Impl_FillGLCaps found GL_VERSION ("2.0.1 NVIDIA
81.78")->(0x00511ff2)
fixme:d3d_caps:IDirect3D8Impl_FillGLCaps found GL_RENDERER ("GeForce 6800
GS/PCI/SSE2")->(0x0250)
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(128,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(129,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(130,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(131,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(132,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(133,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(134,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(135,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(162,-1) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(163,0) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(164,1065353216) not
handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(165,1) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(172,3) not handled yet
fixme:d3d:IDirect3DDevice8Impl_SetRenderState (0x7fd45058)->(173,1) not handled yet
fixme:d3d:IDirect3DDevice8Impl_GetDeviceCaps (0x7fd45058) : stub, calling
idirect3d for now
epoll_ctl: Operation not permitted
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb41-f175-11d1-a392-00e0291f3959} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb46-f175-11d1-a392-00e0291f3959} not found
fixme:quartz:AVISplitter_InputPin_PreConnect process ODML header
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb41-f175-11d1-a392-00e0291f3959} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb46-f175-11d1-a392-00e0291f3959} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb41-f175-11d1-a392-00e0291f3959} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb46-f175-11d1-a392-00e0291f3959} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb41-f175-11d1-a392-00e0291f3959} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb46-f175-11d1-a392-00e0291f3959} not found
fixme:quartz:Filtergraph_QueryInterface unknown interface
{56a868b2-0ad4-11ce-b03a-0020af0ba770}
fixme:quartz:PullPin_Seek (0x71e7fb78)->(000000000, 7fffffffffffffff)
fixme:quartz:PullPin_BeginFlush (0x71e7fb78)->()
fixme:quartz:PullPin_EndFlush (0x71e7fb78)->()
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=8192 <
primary_done=15004)
err:dsound:DSOUND_MixOne underrun on sound buffer 0x71e81df8
err:dsound:DSOUND_MixOne underrun on sound buffer 0x71e81df8
err:dsound:DSOUND_MixOne underrun on sound buffer 0x71e81df8
... (a lot more of those)
--
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=4536
Summary: c2man mangles "DllAllocSplMem" to "dll AllocSplMem"
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
While creating a spoolss.dll
(http://www.winehq.org/pipermail/wine-patches/2006-February/024228.html), the
command:
make -C dlls/spoolss/ doc-html
produces from this lines:
--- cut ---
* PARAMS
* memory [I] PTR of the Memory, allocated by DllAllocSplMem
*
--- cut ---
this documentation:
--- cut ---
PARAMS
memory [In] PTR of the Memory, allocated by dll AllocSplMem
--
By by ... Detlef
--
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=4519
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-10-02 15:37 -------
Hey, not trying to blame anything. Just trying to provide some info which might
be helpful to those who know a lot more of these things then i :). It just shows
that wine _can_handle things correctly but i guess there need to be more ifdefs
and end difs in the source.
--
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=4519
------- Additional Comments From ivg2(a)cornell.edu 2006-10-02 15:03 -------
The fact that something works for you and doesn't work for me should not be
automatically blamed on my setup. There could be a million differences between
my system and yours. I run Rawhide +/-3 days. That usually means that I do run
into every "weird bug" there is. This is Athlon x86_64 (but 32-bit wine, since
Fedora doesn't ship 64-bit one).
I could provide all kinds of information if you ask, but blaming my
configuration or setup without specific suggestions is not helpful.
The bug wasn't filed against a fresh Wine installer. However, I've now tried
that as well, with the same results (.wine folder re-created from scratch, and
TransGaming ActiveX installed on top of 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=4535
Summary: wined3d:Farcry demo crashes in wined3d
Product: Wine
Version: CVS
Platform: PC
URL: http://www.gamersnet.nl/demos/demo.php?id=490
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi, the demo runs quite nice in opengl mode so i thought would be a good test case
for tracking down directx bugs. The demo crashes with a popup messagebox: "block
header was corrupted."
Last line in the console was:
fixme:d3d:IWineD3DVolumeImpl_LockBox (0x7c6b0c50) : pBox=(nil) stub
Following hack makes FarCray get past this bug:
in wined3d/volume.c add this line after line 144:
FIXME("(%p) : pBox=%p stub\n", This, pBox);
if(!pBox) return D3DERR_INVALIDCALL;
The hack is probably bogus as well, but at least shows there's a bug in
IWineD3DVolumeImpl_LockBox.
How could i test this further?
(BTW. with the hack i get into the menu, but the text is unreadable, and then
FarCry crashes as it tries to load the game.)
--
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=4008
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-10-02 14:28 -------
Yip, and i think i ran into exactly the same issue with the Seriou Sam demo.
Question is: anyone an idea what the cause might be 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=4519
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-10-02 14:25 -------
you really seem to run into weird bugs. A week ago i added the fear demo to
install (almost) just fine (http://appdb.winehq.org/appview.php?versionId=4209)
and i just tried the quake 4 demo again and it installs just fine (it really
runs "out of the box" as well). There must be something wrong with your
distro/setup or whatever i don't know. (FYI my quake4 demo i got from
gamershell.com. Where did you get yours?)
--
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=4008
------- Additional Comments From cklein(a)mpi-sb.mpg.de 2006-10-02 14:20 -------
The bug is also present in 20050419.
It doesn't occur until 2005-07-07, because up to this patch, the msvcrt.dll that
is put into the game directory during installation is used, but after the change
to dlls/ntdll/loadorder.c, the builtin version of the dll is used, which causes
both the crash when loading and the broken fonts.
So this is probably not a regression but a bug that was hidden by the native dll.
--
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=4008
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-10-02 12:34 -------
i just tried this with Wine 20050628. A clean install of Wizardy and no config
file:unlike as reported here the bug _is_ present in this version.
Now i copy a native msvcrt to the directory where the game is installed:
the bug is gone, which is clear as i see:
trace:loaddll:load_native_dll Loaded module L"C:\\Program Files\\Sirtech
Canada, Ltd\\Wizardry 8 Net Demo\\MSVCRT.dll" : native
doing:
WINEDLLOVERRIDES="*msvcrt=b" wine Wiz8.EXE
triggers the bug again.
so the patch that "broke" this game didn't really break it; it was already
broken in earlier versions.
--
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=4353
------- Additional Comments From ploujj(a)gmail.com 2006-10-02 12:33 -------
I got a very similar error when I tried to install the full version of the game
with wine 0.9.2:
fixme:ole:RpcChannelBuffer_GetDestCtx (0x5855f5f0,0x5855f5f4), stub!
err:ole:ifproxy_release_public_refs IRemUnknown_RemRelease failed with error
0x80070057
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0f00-00000b000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0c00-00000b000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0f00-00000b000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0f00-00000b000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
--
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=4534
Summary: Grand Theft Auto 3: Vice City
Product: Wine
Version: 0.9.7.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivg2(a)cornell.edu
GTA:VC starts up, then an InstallShield progress window shows up, which will not
redraw properly. I wait for a very long time, and the following error shows up:
============
An error (-5011: 0x8000ffff) has occurred while running the setup.
Please make sure you have finished any previous setup and closed other
applications. If the error still occurs, please contact your vendor Rockstar
Games (http://www.RockStarGames.com)
============
Error Details:
Error Code: -5011 : 0x8000ffff
Error Information:
>Kernel\TextSubstitution.cpp (555)
>SetupDLL\SetupDLL.cpp (551)
PAPP:Grand Theft Auto: San Andreas
PVENDOR:Rockstar Games (http://www.RockstarGames.com)
PGUID:E0303B6A-C675-4102-95DA-C013625BFA99
$10.50.0.125
@Windows 2000 Service Pack 4 (2195) BT_OTHER 55460.32668
==============
Wine Output:
fixme:ole:ITypeInfo_fnRelease destroy child objects
err:win:WINPOS_GetWinOffset bad hwndFrom = 0x10022
Let me know what needs to be traced.
===============
This is definitely a regression, it used get past this point a long time ago.
--
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=4533
Summary: Half Life 2 fails to install [ MSI ]
Product: Wine
Version: 0.9.7.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivg2(a)cornell.edu
Ok, so the License dialog is now fixed (however, I notice that when I use the
scrollbar to scroll down, it highlights all the text, which is annoying, and
seems to make it slow).
The installer gets past all the dialogs, and begins installing. Then crashes in
the middle:
fixme:msi:MsiInstallProductW L"Z:\\media\\HL2_1\\hl2.msi" (null)
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"ValidateProductID"
fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub
fixme:msi:msi_dialog_set_control_condition Unhandled action L"Default"
fixme:msi:msi_dialog_set_control_condition Unhandled action L"Default"
fixme:msi:msi_dialog_set_control_condition Unhandled action L"Default"
err:msi:msi_dialog_create_controls no handler for element type L"GroupBox"
err:msi:msi_dialog_create_controls no handler for element type L"GroupBox"
fixme:msi:ControlEvent_SpawnWaitDialog Doing Nothing
err:msi:msi_dialog_create_controls no handler for element type L"GroupBox"
err:msi:msi_dialog_create_controls no handler for element type L"GroupBox"
fixme:msi:ControlEvent_SpawnWaitDialog Doing Nothing
fixme:msi:ControlEvent_SpawnWaitDialog Doing Nothing
err:msi:msi_dialog_create_controls no handler for element type L"Billboard"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"ValidateProductID"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"SetODBCFolders"
fixme:msi:msi_dialog_handle_event Attribute L"Progress" not being set
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnpublishComponents"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"UnpublishFeatures"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"UnregisterComPlus"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterTypeLibraries"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"RemoveODBC"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"RemoveRegistryValues"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterClassInfo"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterExtensionInfo"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterProgIdInfo"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterMIMEInfo"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"RemoveShortcuts"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"RemoveDuplicateFiles"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"RemoveFolders"
err:cabinet:FDICopy PFDI_OPEN returned zero for Z:\media\HL2_1\hl22.cab.
err:msi:extract_cabinet_file FDICopy failed
err:msi:ACTION_InstallFiles Unable to ready media
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned 1627
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1627
X Error of failed request: BadAlloc (insufficient resources for operation)
Major opcode of failed request: 53 (X_CreatePixmap)
Serial number of failed request: 532
Current serial number in output stream: 542
--
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=4520
------- Additional Comments From ivg2(a)cornell.edu 2006-10-02 09:07 -------
Jason, I run into this:
http://bugs.winehq.org/show_bug.cgi?id=4531
I really don't remember how I was able to get around it and install newer Steam
in the past.
=============================
However, I did re-run regsvr32 on Transgaming's ActiveX control, and I think
Vitaliy might have been correct - maybe I forgot to regsvr mozctlx.dll. I no
longer see the "not found" error messages.
Steam still crashes with the same error. Sometimes it decides to get stuck in
100% CPU loop. I think in those cases it's writing a huge debug file to disk - I
remember seeing this before. I don't have the patience to wait and see what
error is shown afterwards - it's probably the same thing.
More output scenarios:
fixme:font:WineEngCreateFontInstance just using first face for now
fixme:font:WineEngCreateFontInstance just using first face for now
fixme:dbghelp:sffip_cb NIY on
'u:\p4clients\rel_beta\Projects\GazelleProto\Client\BootStrapper\VC70_Release_Static\BootStrapper.pdb'
fixme:dbghelp:sffip_cb NIY on 'u:\s3_rel_client\src\steamUI\Release\SteamUI.pdb'
fixme:dbghelp:sffip_cb NIY on 'c:\steam3_rel_client\bin\Release\vstdlib_s.pdb'
fixme:dbghelp:sffip_cb NIY on 'u:\s3_rel_client\bin\Release\tier0_s.pdb'
fixme:dbghelp:sffip_cb NIY on
'c:\steam3_rel_client\src\filesystem\filesystem_stdio\Release\filesystem_steam.pdb'
fixme:dbghelp:sffip_cb NIY on 'u:\s3_rel_client\src\vgui2\src\Release\vgui2.pdb'
fixme:dbghelp:sffip_cb NIY on
'c:\steam3_rel_client\bin\ClientRelease\steamclient.pdb'
fixme:dbghelp:sffip_cb NIY on 'u:\s3_rel_client\src\friendsUI\Release\friendsUI.pdb'
fixme:dbghelp:sffip_cb NIY on
'u:\s3_rel_client\src\serverbrowser\Release\ServerBrowser.pdb'
fixme:dbghelp:sffip_cb NIY on 'msvcp60.pdb'
fixme:dbghelp:sffip_cb NIY on
'u:\p4clients\taylor_pubkeys\ThirdPartyCode\DebugNet\Release\BugslayerUtil.pdb'
Shutting down. . .
30client callback thread error
fixme:font:WineEngCreateFontInstance just using first face for now
fixme:font:WineEngCreateFontInstance just using first face for now
fixme:dbghelp:EnumerateLoadedModules If this happens, bump the number in mod
--
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=4531
Summary: Initial Steam install freezes at 26% on update [ SEH ]
Product: Wine
Version: 0.9.7.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivg2(a)cornell.edu
When Steam is initially installed, it can't be updated - it freezes at 26%. I
don't think newer versions of Steam have this problem (although I don't remember
how I managed to get them installed before).
The following output is printed:
err:seh:setup_exception stack overflow 12 bytes in thread 000c eip 7ff8e612 esp
7dc4eff4 stack 0x7dc4f000-0x7dd5f000
err:seh:setup_exception nested exception on signal stack in thread 000c eip
f7f1e1bf esp 7e57d8cc stack 0x7dc4f000-0x7dd5f000err:seh:setup_exception nested
exception on signal stack in thread 000c eip f7f1e1bf esp 7e57d19c stack
0x7dc4f000-0x7dd5f000err:seh:setup_exception stack overflow 0 bytes in thread
0009 eip 0047730a esp 7f8c1000 stack 0x7f8c1000-0x7f9d0000
Let me know if you need additional traces.
--
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=4519
ivg2(a)cornell.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Quake 4 Demo fails to |Quake 4/Fear Demo fail to
|install |install
------- Additional Comments From ivg2(a)cornell.edu 2006-10-02 08:37 -------
I can now reproduce the same bug on the FEAR demo.
I see a progress bar, which is hidden by a "Starting InstallShield Wizard" box.
Then the bar gets to 100%, and nothing happens for a very long time (and window
does not get redrawn). Eventually I see the same error ("Object reference not set").
Output is sparse:
fixme:ole:ITypeInfo_fnRelease destroy child objects
This is with Wine 0.9.7
--
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=4008
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-02 23:28 -------
If so, could you compare what dlls are loaded before the patch and after the
patch (use WINEDEBUG=+loaddll wine game.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=4521
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-02 23:17 -------
Unless some one will beat me to it I'll do regression test this weekend.
It will be a bit of the challenge - it doesn't crash rightwaway if one uses OSS
an d no other programs using sound.
--
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=4305
tkho(a)ucla.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tkho(a)ucla.edu
------- Additional Comments From tkho(a)ucla.edu 2006-09-02 21:21 -------
I can't figure out how to reproduce your problem using the dltcep67 program, but
I'm working on implementing EM_GETLINE.
--
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 jbdubbs(a)gmail.com 2006-09-02 19:35 -------
Ok, I see what you're saying now. Wine should probably include aliases to
common Windows fonts like Tahoma. I'm not sure packaging a font with Wine is
the way to go, but maybe having an alias in place is an ok idea.
I'm sure there are some free substitutes out there already. I'll check around
and see if I can find a good one we could install on our systems ourselves.
--
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=4519
ivg2(a)cornell.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.6. |0.9.7.
------- Additional Comments From ivg2(a)cornell.edu 2006-09-02 18:59 -------
This was with wine 0.9.6, which was released more than 2 weeks ago.
I'm now changing the version to 0.9.7, since I can confirm the bug there too.
I don't have rpms for older versions, I'd have to fight with CVS to make it
compile on x86_64 (in 32 bit mode)(which doesn't sound like fun, maybe later
this weekend).
--
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=4520
------- Additional Comments From jbdubbs(a)gmail.com 2006-09-02 18:50 -------
I get an error similar to this when I use Wine's Mozilla Active X Control.
Ivan, can you confirm this bug from a fresh Wine install along with the
transgaming control?
--
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=2533
------- Additional Comments From vapier(a)gentoo.org 2006-09-02 17:42 -------
i should have been a little more clear :)
the patch was written against cvs, i just tested with 0.9.7
thanks for testing, i'll send to wine-patches 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=2520
------- Additional Comments From us(a)edmeades.me.uk 2006-09-02 17:30 -------
Patch for up key problem http://www.winehq.org/pipermail/wine-patches/2006-
February/024202.html
That leaves the mdi min,max,restore which get selected during left and right
(can be seen in winefile - hit alt and the mdi sysmenu appears correctly
selected (hit the down arrow to expand it if you want proof), then left twice
(once is the main sys menu, then next should be the last real menu item) and
the max button is incorrectly highlighted! winefile running on windows doesnt
show this behaviour)
--
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=4008
------- Additional Comments From cklein(a)mpi-sb.mpg.de 2006-09-02 17:05 -------
Bug 3958 is a duplicate of this bug.
However, as I wrote there, it seems like this regression was caused around
2005-07-07, since this however contradicts with what the other posters say, it
seems like I was just to stupid to use cvs...
Original note:
***
After messing around with cvs and recompiling wine many times, it seems that the
bug started at 2005-07-07.
Strangely enough it seems to be caused by this:
--------------------
2005-07-07 20:26 julliard
* dlls/ntdll/loadorder.c: Use the same defaults for modules with
and without an explicit path.
--------------------
or at least by a patch submitted somewhere close to this.
(I checked out with -D 2005-07-07 20:25, and it worked,
I checked out with -D 2005-07-07 21:00, which should add exactly the above
patch, and it didn't work any longer)
--
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=3958
cklein(a)mpi-sb.mpg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From cklein(a)mpi-sb.mpg.de 2006-09-02 16:58 -------
Bug is Duplicate of 4008
*** This bug has been marked as a duplicate of 4008 ***
--
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=4008
------- Additional Comments From cklein(a)mpi-sb.mpg.de 2006-09-02 16:58 -------
*** Bug 3958 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=3171
richard(a)daijobu.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
------- Additional Comments From richard(a)daijobu.co.uk 2006-09-02 16:46 -------
*** Bug 4441 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=4441
richard(a)daijobu.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From richard(a)daijobu.co.uk 2006-09-02 16:46 -------
#3171 has screenshots
*** This bug has been marked as a duplicate of 3171 ***
--
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=4207
flerchjj(a)ieee.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From flerchjj(a)ieee.org 2006-09-02 16:41 -------
I confirmed this bug with wine 0.9.4, but I know it has been fixed in 0.9.6. I
did verify its existence in 0.9.5.
--
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=3793
hverbeet(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |hverbeet(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=4530
Summary: Foldershare not installing properly
Product: Wine
Version: 0.9.6.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andraz.tori1(a)guest.arnes.si
http://www.foldershare.com/download/index.php?
... it does not install properly.
full log here:
minmax@kocka:~/Desktop$ wine msiexec /i FolderShareSetup-2.5.10.msi
Invoking /usr/lib/wine/wine.bin msiexec /i FolderShareSetup-2.5.10.msi ...
fixme:msi:MsiInstallProductW L"FolderShareSetup-2.5.10.msi" (null)
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"ValidateProductID"
fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub
err:richedit:ReadStyleSheet ReadStyleSheet: unknown token "\widctlpar"
err:richedit:ReadStyleSheet ReadStyleSheet: unknown token "\adjustright"
err:richedit:ReadStyleSheet ReadStyleSheet: unknown token "\cgrid"
err:richedit:ReadStyleSheet ReadStyleSheet: skipping optional destination
fixme:msi:msi_dialog_pathedit_control not implemented properly
err:msi:msi_dialog_create_controls no handler for element type L"VolumeCostList"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"ValidateProductID"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"SetODBCFolders"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"RemoveExistingProducts"
fixme:msi:ACTION_PerformAction unhandled msi action L"UpdateResources"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnpublishComponents"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"UnpublishFeatures"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"UnregisterComPlus"
fixme:msi:msi_unimplemented_action_stub SelfUnregModules -> 1 ignored L"SelfReg"
table values
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterTypeLibraries"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"RemoveODBC"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"RemoveRegistryValues"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterClassInfo"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterExtensionInfo"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterProgIdInfo"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"UnregisterMIMEInfo"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"RemoveShortcuts"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"RemoveDuplicateFiles"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"RemoveFolders"
err:menubuilder:extract_icon32 LoadLibraryExW
(L"c:\\windows\\profiles\\minmax\\Application
Data\\Microsoft\\Installer\\{0BFD81DC-1DF3-4674-9760-9853A6B4E8B2}\\_32611083.exe")
failed, error 126
err:menubuilder:InvokeShellLinker failed to fork and exec wineshelllink
err:menubuilder:extract_icon32 LoadLibraryExW
(L"c:\\windows\\profiles\\minmax\\Application
Data\\Microsoft\\Installer\\{0BFD81DC-1DF3-4674-9760-9853A6B4E8B2}\\_25c742f.exe")
failed, error 126
err:menubuilder:InvokeShellLinker failed to fork and exec wineshelllink
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"InstallODBC"
err:module:import_dll Library MFC42.DLL (which is needed by L"C:\\Program
Files\\FolderShare\\fsDetect.ocx") not found
Failed to load DLL C:\Program Files\FolderShare\fsDetect.ocx
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"RegisterComPlus"
20:43:07.176 u commandLine.c:9 (DETAIL): arg 1: Files\FolderShare\FolderShare.exe
20:43:07.177 u core.c:1053 (NORMAL): got application exec location: C:\Program
Files\FolderShare
20:43:07.196 u fileSystem.c:790 (DETAIL): created C:\Program
Files\FolderShare\settings
20:43:07.196 u configFile.c:120 (CRITICAL): unable to open config file:
C:\Program Files\FolderShare\settings\global.ini, err: 2
20:43:07.196 u core.c:1364 (ERROR): Error reading config file 'C:\Program
Files\FolderShare\settings\global.ini',readConfigFile returned 0, fileSize is -1
20:43:07.196 u fileSystem.c:790 (DETAIL): created C:\Program Files\FolderShare\logs
Wine exited with a successful status
minmax@kocka:~/Desktop$
--
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=4521
------- Additional Comments From hverbeet(a)gmail.com 2006-09-02 14:09 -------
I haven't got HL2, can anyone verify which patch broke it?
--
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=4523
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Can't copy from Firefox 1.5 |Can't copy from Firefox 1.5
| |and paste into OpenOffice 2
| |under Wine
------- Additional Comments From dank(a)kegel.com 2006-09-02 13:54 -------
I can also copy from linux Firefox and paste into
wine OpenOffice.
So the only combination that's broken is
wine's Firefox 1.5 into wine's OpenOffice 2.
--
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=4523
------- Additional Comments From dank(a)kegel.com 2006-09-02 13:52 -------
I can also copy from firefox and paste into
Gnome Terminal, and into native OpenOffice.
I just can't paste into
OpenOffice under Wine.
So perhaps it's not Firefox's fault after all?
--
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=4509
stefan_betz(a)gmx.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|NoAppDBEntry |
------- Additional Comments From stefan_betz(a)gmx.net 2006-09-02 13:15 -------
Ok, i have made some Request for the AppDB.
--
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=2533
------- Additional Comments From sick_soul(a)yahoo.it 2006-09-02 11:58 -------
patch applies cleanly to CVS.
DESTDIR support validates perfectly.
This patch should go in.
Claudio
--
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=4529
Summary: In Firefox 1.5, background images displayed wrong
Product: Wine
Version: 0.9.7.
Platform: Other
URL: http://kegel.com/wine/gmailstar.html
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Start Firefox 1.5.
View http://kegel.com/wine/gmailstar.html
The star should be yellow. Instead, it is white and black.
Long story:
this bug makes gmail look clunky. Here's how to see it in
its natural habitat:
Log in to your gmail account.
(If you need one, I can invite you, I have 100 invites left.)
The 'star' symbol (a small gif) is displayed in two places:
1) after the word 'Starred' in the left navbar
2) in the list of messages; each line in the list has
a checkbox, a star (on or off), the name of the sender,
and the subject.
The star in the left navbar looks fine; it's displayed
using a foreground img link.
The stars in the list of messages are displayed using
a css background style, and look like crap,
and are broken -- you see only an inverse of a star,
and the star image itself is not really shown, so you
can't tell if the star is on or off.
You can see the HTML involved if you do a Save Page,
grep all the files for star_off_sm_2.gif
or star_on_sm_2.gif, and run the matching files
through tidy. To save you the pain,
I have isolated a minimal HTML test and uploaded it to
http://kegel.com/wine/gmailstar.html
This displays the star as a background
in the same way gmail does; it looks
like crap under wine, but ok under native firefox.
--
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=4523
------- Additional Comments From ulrich.czekalla(a)utoronto.ca 2006-09-02 10:56 -------
Looking at your trace X11DRV_SelectionRequest_TARGETS isn't outputting what I
would expect.
Can you copy and paste within firefox?
--
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=4528
Summary: Firefox vertical size wrong, doesn't take gnome system
menu or task bars into account
Product: Wine
Version: 0.9.7.
Platform: Other
URL: http://mozilla.com
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
When Firefox 1.5 starts up, its upper left
corner is perfectly positioned just below
the gnome top menu bar. Its vertical size,
however, is the same as the screen, which
means that its bottom edge is below the
top of the taskbar at the bottom of the screen.
This occurs with both FC3 and Ubuntu 05.10.
--
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=4523
------- Additional Comments From dank(a)kegel.com 2006-09-02 10:21 -------
good idea, but no joy. Patch applied and built,
but problem seems to persist.
Note that the "failed to close clipboard" error seems
to occur when closing firefox, so it's well after
the main symptom is seen.
--
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=4527
Summary: port.h ISO errors
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jjk3(a)msstate.edu
libs/port/interlocked.c fails when compiled with strict C90 compliance.
The problem is an extra semicolon after the __ASM_GLOBAL_FUNC macro definition
in include/wine/port.h.
--
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=4347
------- Additional Comments From dank(a)kegel.com 2006-09-02 09:42 -------
A user wrote to say:
"Thanks for the fix, I have just installed Wine 0.9.7 and have a working
Concise Oxford Dictionary.
Even though I spent many years at school learning English, the
subsequent years have meant the learning has drained back out and I need
a dictionary a lot!!
Regards
Peter Gregory"
--
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=2533
------- Additional Comments From sick_soul(a)yahoo.it 2006-09-02 09:28 -------
> can you guys give it a spin and if all works out
> i'll sent to wine-patches ...
I will validate the DESTDIR support using sourceinstall.
After I checkout 0.9.7 source, it will take a second.
Claudio
--
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
cdunn42(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |cdunn42(a)yahoo.com
------- Additional Comments From cdunn42(a)yahoo.com 2006-09-02 08:23 -------
Having a similar problem with QCharts since wine 0.9.6, so I thought I should
add a comment here instead of creating a new bug. The error I get is :
err:ole:ITypeInfo_fnInvoke failed to convert param 1 to VT_VARIANT|VT_BYREF from
VT_VARIANT|VT_BYREF
Copying the old dlls/oleaut32/typelib.c from 0.9.5 eliminates the error.
QCharts is subscription software, but the bug shows up before you have to give a
username/password, so it should be possible to test without subscribing.
Download from www.qcharts.com :
http://www.quote.com/qcdownload/QChartsUpdate/SetupQCharts51.exe
Mozilla ActiveX control required, true type fonts reccomended, native dlls
needed : mfc42.dll, msvcirt.dll
Seems to happen when trying to embed the browser in the login screen. Pops up a
dialog saying "Internal Application Error", but does not prevent the rest of the
app from running.
--
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=3771
darkvater(a)operamail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
------- Additional Comments From darkvater(a)operamail.com 2006-09-02 06:06 -------
"Is this app still crashing with current wine version?" <-- you
"Yes, problem persists" <-- me
"Since it is not crashing for you anymore I will close this bug as FIXED." <--
you
Perhaps a misunderstanding, but the game still crashes, I just tested it in my
comment with 0.9.7
--
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=4436
------- Additional Comments From J.A.Gow(a)furrybubble.co.uk 2006-09-02 04:58 -------
Thanks for the comments Mike. However I first must stress that the Commit is
_not_ the source of the trouble. The app uses a storage file that is shipped
with the app, i.e. it does not create it. I do have to create one during the
performance tests in order to have something to test with and I do the Commit
just to be sure that all streams are correctly written to the file (I don't know
if it is strictly necessary, as I said I am not a Windows apps programmer!)
The problem is almost certainly somewhere in the reference counting. Yes, my
patch _does_ work on Windows (tested on XP - I can't test other versions of
Win), and _does_ fail on Wine CVS. I described the methodology behind my
Releases in the comments earlier in the bug report.
I completely agree with you that it is technically wrong to have to Release
twice. However, under Wine I _must_ to do this or the storage file is not
closed! This is the actual problem! Under Windows, I only have to Release once,
as would be expected. So that is the reason I had two Releases in the
performance test, the second enclosed in a return code test.
Under Wine, the first Release returns 1, but does not close the storagefile. The
second Release returns zero and closes the file. If I do not execute the second
Release under Wine, the file remains open and cannot be reopened in subsequent
tests.
Under WinXP, the first release returns zero, and closes the storage file. The
second Release is then not executed. This stops the conformance test from
crashing under Windows, as the first Release frees the 'stg' object.
I looked at your patch modification, and this will segfault under Win (I know,
this is how I did it initially!) as after the first Release, the 'stg' object is
freed. The second Release is called on unallocated memory, and the conformance
test crashes. It will, however, not segfault under Wine because under Wine, the
first Release does _not_ free the 'stg' object. The way I did it highlights the
problem without the conformance test crashing under Win.
I have submitted the original patch to wine-patches, however I forgot the
todo_wine { } sections, so I may have to resubmit it.
--
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=4519
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Quake 4 Demo fails to |Quake 4 Demo fails to
|install |install
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-09-02 03:25 -------
I remember it to install fine a couple of weeks ago, so looks like a
regression. Could you test if it works with earlier versions, as to see if it's
really a regression|?
--
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=4427
------- Additional Comments From dabljuh(a)dabserver.dyndns.org 2006-09-02 02:37 -------
Ok, I managed to find a workaround for the flashbang bug: When I change the
game's resolution from 1600:1200 to 1280:960, the flashbangs no longer crash my
game. 1600:1200 is also my desktop resolution, so I do not know if it is the
resolution alone, or the fact that it is the same resolution as my desktop
(randr problem?) causes the crash. When I go back to 1600:1200 I experience the
crashes again.
Update on the DXlevel issues: Upgrading to 0.9.7 indeed did change something,
rather than CTD'ing when any other dxlevel than 70 is set up, the menu screen
remains bright white. Experimentally I have played with the shader settings in
winecfg and found that disabling VERTEX shaders would display the menu
correctly, but, regardless of the state of Pixelshaders would not allow me to
play the game (CTD with the DX8Mesh error). Keeping Vertex Shaders enabled
(white-out menu) and joining a game via the command line results in glitchy
graphics in game. The entire screen appears blue, several textures are missing,
and the player models appear warped and deformed (vertex shader problem).
Keeping pixel shaders disabled while vertex shaders are enabled also crashes the
game. Note this happens for dxlevel 80, 81, and 90 only, as dxlevel 70 works
like a charm apart from the worked-around flashbang 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.
http://bugs.winehq.org/show_bug.cgi?id=4443
------- Additional Comments From frix(a)engineer.com 2006-09-02 01:50 -------
Hi there,
Testing Omni Accounts with a Richedit 2 DLL from M$Windows 98 seems to work
fine. The feedback from the Wine community was that any riched up to, and
including, windows 2000 should work.
I would love to see Wine support this out of the box, though.
To make this work, follow the following steps:
1.copy native win98 riched20.dll to ~/.wine/drive_c/windows/system32
2. Launch "winecfg"
2.1. Applications-tab: Set "Windows version" to "windows 98"
2.2. Libraries-tab: Add riched20, with options: "native,builtin"
Regards.
--
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=4436
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
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=4525
Summary: OpenOffice 2.0.1 locks up after using File Open dialog
for a while
Product: Wine
Version: CVS
Platform: Other
URL: http://openoffice.org
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
To repeat, start OOO 2.0.1, then do File/Open
and browse through a directory full of files.
Sooner or later it'll hang.
Wine tries to bring up the debugger at this point,
but the heap is corrupted, and it falls over.
--
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=4518
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.painkillergame.co
| |m/pc_site/index2.php
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=4449
------- Additional Comments From ivg2(a)cornell.edu 2006-08-02 23:44 -------
An application wouldn't make that choice unless Tahoma was shipped by default on
Windows systems. Since Wine attempts to emulate a Windows system, it should also
provide this font.
Anyway, thinking like an engineer is the wrong thing to do. Put yourself in the
end user's (mine) shoes. As far as I can see my application doesn't work. I
don't care why it doesn't work, I just want it to behave similarly as it does on
Windows (which I think is a Wine goal).
By the way, there's nothing to tell me that missing fonts are causing the
problem. There's no warning - all I see is the font-less dialog box. Furthermore
putting the Tahoma font in the Linux fonts folders does not work, and the
overrides trick someone else suggested doesn't work either. That seems to
indicate a bug (I do expect Wine to find my Linux fonts like other applications do).
--
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=4435
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From dank(a)kegel.com 2006-08-02 23:43 -------
Seems to not happen anymore with 0.9.7+ ?
--
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=4514
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, NoAppDBEntry
--
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=4523
------- Additional Comments From dank(a)kegel.com 2006-08-02 23:40 -------
Rerunning with current cvs shows same results.
Log is slightly different:
-trace:clipboard:GetClipboardViewer hWndViewer=(nil)
+trace:clipboard:GetClipboardViewer hWndViewer=0x10078
--
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=4520
------- Additional Comments From ivg2(a)cornell.edu 2006-08-02 23:38 -------
I am using the one from transgaming.
What makes you think it's improperly installed?
I've seen those errors before with no consequence.
--
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=3771
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-02 23:23 -------
Since it is not crashing for you anymore I will close this bug as FIXED.
Please add comments about "err:dsound:DSOUND_MixOne underrun on sound buffer"
errors to bug 1631
--
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=4509
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-02 23:09 -------
Could you please add an entry in the AppDB for this application.
http://appdb.winehq.org
--
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=4521
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |hverbeet(a)gmail.com
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |regression
------- Additional Comments From vitaliy(a)kievinfo.com 2006-08-02 22:36 -------
Confirming. Must be few d3d patches that got in yesterday (Feb 7 2006).
Adding the only author who changed that part in the last two days.
--
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=4523
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Can't copy from Firefox 1.5 |Can't copy from Firefox 1.5
|then paste into OpenOffice 2|
------- Additional Comments From dank(a)kegel.com 2006-08-02 22:27 -------
Looks like the problem might be on Firefox's end;
even without OOo running, Firefox complains
err:clipboard:CLIPBOARD_CloseClipboard Failed to set clipboard.
I'll paste a log with +clipboard.
--
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=4520
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Steam crashes on startup - |Steam crashes on startup -
|cannot read from virtual |cannot read from virtual
|addr 88 |addr 88
------- Additional Comments From vitaliy(a)kievinfo.com 2006-08-02 22:26 -------
Looks like you don't have properly installed mozilla activeX controls. And you
have to use one from TransGaming:
http://downloads.transgaming.com/mozilla_control_downloads/mozcontrol.tgz
--
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=4523
Summary: Can't copy from Firefox 1.5 then paste into OpenOffice 2
Product: Wine
Version: 0.9.7.
Platform: Other
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
To repeat, install both Firefox 1.5 and OpenOffice 2
under wine. Start both. Copy text in Firefox,
try to paste it in OOo. The 'paste' option isn't even highlighted.
This was with roughly wine-0.9.7 (from 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=4436
------- Additional Comments From mike(a)codeweavers.com 2006-08-02 22:02 -------
Created an attachment (id=1866)
--> (http://bugs.winehq.org/attachment.cgi?id=1866&action=view)
Added todo_wine, fixed ref counting
Improved the patch a little... I'm curious about the way you did the Releases
though. Does that really work on Windows? Feel free to submit this to
wine-patches if you want.
--
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=4436
------- Additional Comments From mike(a)codeweavers.com 2006-08-02 21:58 -------
Some comments here:
if(stm) {
r=IStorage_Commit(stg,STGC_DEFAULT);
ok(r==S_OK, "StorageCommit failed\n");
}
Looks like we should write out the storage file when Commit is called above, and
that's the main source of trouble.
// Windows reference counting seems different....
r = IStorage_Release(stg);
ok(r == 0, "wrong ref count"); printf("- ref count = %lx\n",r);
if(r) {
r = IStorage_Release(stg);
ok(r == 0, "wrong ref count"); printf(" - ref count = %lx\n",r);
}
The above is technically wrong. You only grabbed the storage once, so you
should only release it once. One of those should be an IStream_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=4436
------- Additional Comments From mike(a)codeweavers.com 2006-08-02 20:29 -------
Great! Now you have a regression test, the next step is to add todo_wine {}
around the ok() macros that fail, and submit it to wine-patches.
--
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=4522
Summary: Improperly aligned column data
Product: Wine
Version: 0.9.7.
Platform: PC
URL: http://inhuman.org:81/~ugly/wineproblem.jpg
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martopolis(a)gmail.com
Columns in ProMash aren't properly aligned. It seems that each column is pushed
over slightly to the left. The first column and second column contents look
completely condensed into the first. ProMash has a free evaluation copy
obtainable here:
http://www.promash.com/Software/eval.html
I did not see this behavior in versions of WINE less than 0.9.6. The problem
exists in 0.9.7 as well.
Below is a screenshot of the problem:
http://inhuman.org:81/~ugly/wineproblem.jpg
--
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 jbdubbs(a)gmail.com 2006-08-02 18:50 -------
I'm not sure that the fact that linux doesn't carry a Tahoma font is Wine's
problem. I think that's more of a linux problem. If a linux application
decided that it would only use a Tahoma font, it would have the same problem.
We should probably close this bug because of this fact, but that is just my opinion.
--
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=3822
------- Additional Comments From jbdubbs(a)gmail.com 2006-08-02 18:46 -------
Gotcha, sorry for the confusion. This basically means that Wine isn't
conforming to Free Desktop standards for system applets, 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=4512
------- Additional Comments From ploujj(a)gmail.com 2006-08-02 16:28 -------
It seems that _almost_ none of the wine output I posted so far actually relates
to the problem since I see the same thing when running Unreal without problems
(in singleplayer):
$ ~/apps/wine-0.9.7/wine ~/.wine/drive_c/UnrealGold/System/Unreal.exe
fixme:process:GetProcessWorkingSetSize (0xffffffff,0x55bff568,0x55bff560): stub
err:ole:CoGetClassObject class {92fa2c24-253c-11d2-90fb-006008a1f441} not registered
err:ole:CoGetClassObject no class object {92fa2c24-253c-11d2-90fb-006008a1f441}
could be created for for context 0x1
fixme:ole:CoCreateInstance no classfactory created for CLSID
{92fa2c24-253c-11d2-90fb-006008a1f441}, hres is 0x80040154
err:ole:CoGetClassObject class {d8f1eee0-f634-11cf-8700-00a0245d918b} not registered
err:ole:CoGetClassObject no class object {d8f1eee0-f634-11cf-8700-00a0245d918b}
could be created for for context 0x1
fixme:ole:CoCreateInstance no classfactory created for CLSID
{d8f1eee0-f634-11cf-8700-00a0245d918b}, hres is 0x80040154
fixme:keyboard:RegisterHotKey (0x1002a,49218,0x00000001,27): stub
fixme:keyboard:RegisterHotKey (0x1002a,49219,0x00000001,9): stub
fixme:keyboard:RegisterHotKey (0x1002a,49220,0x00000002,27): stub
fixme:keyboard:RegisterHotKey (0x1002a,49221,0x00000002,9): stub
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x559ac798)->((nil),00000008)
This error:
fixme:winsock:NtStatusToWSAError Status code c0000024 converted to DOS error code 6
appears quite a lot some time before Unreal crashes, and since it seems like a
network error, I don't think its related to the crash in question.
--
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.