http://bugs.winehq.org/show_bug.cgi?id=7965
------- Additional Comments From jamesybaby(a)gmail.com 2007-25-05 09:45 -------
I was experiencing issues with this bug whilst using the -dx8 flag, however
have not had any trouble since changing to dx9.
Which version have you guys been running with?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7876
------- Additional Comments From focht(a)gmx.net 2007-25-05 09:43 -------
Hello,
due to some stall (read: hit-the-wall) in other kmode projects, I gave this one
a shot with my current ntoskrnl impl.
After adding MmMapIoSpace() and MmUnmapIoSpace() impl to ntoskrnl the usermode
part issues a lot of device ioctls.
This consists of direct i/o port reads, gathering peripherals (ACPI ..), chipset
info, timing/calibration loops and the like.
There is a showstopper for now and probably forever due to the way wine is
currently designed.
In short: user mode pointers hidden in ioctl input buffers are passed from user
mode to kernel mode.
Now lets go into details...
--- snip relevant trace ---
...
003c:Call ntdll.RtlAllocateHeap(00610000,00000000,0000000c) ret=00460fa4
003c:Ret ntdll.RtlAllocateHeap() retval=00b6b768 ret=00460fa4
003c:Call ntdll.RtlAllocateHeap(00610000,00000000,00000014) ret=00460fa4
003c:Ret ntdll.RtlAllocateHeap() retval=00b6b780 ret=00460fa4
003c:Call ntdll.RtlAllocateHeap(00610000,00000000,00000404) ret=00460fa4
003c:Ret ntdll.RtlAllocateHeap() retval=00b6b7a0 ret=00460fa4
003c:Call
KERNEL32.DeviceIoControl(00000074,9c402420,0034f494,0000000c,0034f4a0,00000008,0034f4cc,00000000)
ret=0047548e
0043:Ret KERNEL32.WaitForMultipleObjects() retval=00000001 ret=603194a9
0043:Call ntdll.RtlFreeHeap(00110000,00000000,00188d68) ret=603190c2
0043:Ret ntdll.RtlFreeHeap() retval=00000001 ret=603190c2
0043:Call ntdll.RtlAllocateHeap(00110000,00000000,0000000c) ret=603190e8
0043:Ret ntdll.RtlAllocateHeap() retval=00188d68 ret=603190e8
0043:Call ntdll.RtlFreeHeap(00110000,00000000,00188d80) ret=60319149
0043:Ret ntdll.RtlFreeHeap() retval=00000001 ret=60319149
0043:Call ntdll.RtlAllocateHeap(00110000,00000000,00000008) ret=60319183
0043:Ret ntdll.RtlAllocateHeap() retval=00188d80 ret=60319183
0043:trace:ntoskrnl:process_ioctl ioctl 9c402420 device 0x188ca0 in_size 12
out_size 8
0043:trace:ntoskrnl:process_ioctl 0x188d68 0x188d80
0043:Call ntdll.NtGetTickCount() ret=60318920
0043:Ret ntdll.NtGetTickCount() retval=005e6933 ret=60318920
0043:Call driver dispatch 0x350480 (device=0x188ca0,irp=0x6095c7a4)
0043:Call KERNEL32.GetEnvironmentVariableW(6032276e
L"DebugBreak",6095c434,00000104) ret=60318afd
0043:Ret KERNEL32.GetEnvironmentVariableW() retval=00000000 ret=60318afd
0043:Call ntoskrnl.exe.MmMapIoSpace(00000000,00000000,00000400,00000000)
ret=00350716
0043:fixme:ntoskrnl:MmMapIoSpace stub: 0x0 1024 0
0043:Call ntdll.RtlAllocateHeap(00110000,00000000,00000400) ret=60318f13
0043:Ret ntdll.RtlAllocateHeap() retval=0018ca68 ret=60318f13
0043:Ret ntoskrnl.exe.MmMapIoSpace() retval=0018ca68 ret=00350716
0043:trace:seh:raise_exception code=c0000005 flags=0 addr=0x350733
0043:trace:seh:raise_exception info[0]=00000001
0043:trace:seh:raise_exception info[1]=00b6b7a0
0043:trace:seh:raise_exception eax=00b6b740 ebx=00000400 ecx=00b6b7a0
edx=ff6212c8 esi=00188d68 edi=6095c7a4
0043:trace:seh:raise_exception ebp=6095c748 esp=6095c6c4 cs=0073 ds=007b
es=007b fs=0033 gs=003b flags=00010283
--- snip relevant trace ---
So whats going on...
ioctl code 9c402420 decodes as follows:
device: 0xc40 (cpu-z ring0 driver)
function: 0x908
access: FILE_ANY_ACCESS
method: METHOD_BUFFERED
The client (usermode) allocates 2 buffers (RtlAllocateHeap preceeding the
ioctl), with input buffer size = 0xc and output buffer size = 0x8.
It passes data in input buffer, specific to function code, which is used in
kernel driver for further operations.
- ioctl in/out buffers get copied in wineserver (see RtlAllocateHeap() after ioctl).
- IRP gets constructed and passed to the drivers ioctl handler.
The temporary buffers are assigned to IRP:
(1) irp.AssociatedIrp.SystemBuffer = in_buff;
irp.UserBuffer = out_buff;
...
irpsp.Parameters.DeviceIoControl.Type3InputBuffer = in_buff;
---
The kernel driver accesses the input buffer to extract data.
In this case the buffer contains parameters which are used for driver functions.
FIRST error: the Type3InputBuffer is accessed to extract parameters.
This is not allowed in kernel mode drivers when the METHOD_BUFFERED flag is
passed using ioctl.
With METHOD_BUFFERED, the input buffer is in Irp->AssociatedIrp.SystemBuffer.
This is a general rule for kernel driver developers ... but well :-)
Though wine "corrects" this error, by associating the input buffer pointer to
both locations, see (1)
Now it gets interesting.
The following is memory dump of input buffer (Type3InputBuffer, 3x4 DWORDs ->
size 0xC):
offset+0: 00000000
offset+4: 00000400
offset+8 00b6b7a0
The first DWORD is the physical address and the second one is length in bytes
used for MmMapIoSpace().
The driver maps physical memory into nonpaged area to access it.
This direct access is used to dump data from peripherals, like the memory
controller hub (MCHBAR) and others.
The real problem is the third parameter.
This is actually a user mode pointer, allocated before the ioctl call (look for
0x00b6b7a0 address in trace).
This buffer is used as target buffer to hold the data copied from physical space.
Wine doesnt know about this data, because it only sees the device ioctl input
and output buffers as "whole" data block.
So it cannot translate any contained pointers automatically to a valid user
space address.
Remember: the kernel driver runs in winedevice process, while the user mode
client runs in another address space.
Dang. Lost.
The driver would have to run in same address space as the usermode client which
breaks the whole design...
Hope you enjoyed this little analysis ... and sorry, this problem can't be
possibly fixed. :-(
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=8487
------- Additional Comments From spmirowski(a)shaw.ca 2007-25-05 09:39 -------
The bug was filed because this problem occurred on 0.9.37. I then did testing
prior versions of wine to see when this problem arose. 0.9.36 has the same
problem. 0.9.35 does not have this problem. A change to 0.9.36 must be what
has caused this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8496
Summary: wine blocks the computer
Product: Wine
Version: 0.9.37.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paloseco(a)gmail.com
When running the re-volt game at startup the X gets blocked and I cannot do
anything. ctrl+alt+f1 does not switch to terminal.
version wine-0.9.37-g91d5804
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7923
saulius.krasuckas(a)elst.vtu.lt changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |saulius.krasuckas(a)elst.vtu.l
| |t
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8495
paloseco(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.33. |0.9.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=8495
------- Additional Comments From paloseco(a)gmail.com 2007-25-05 09:11 -------
The progressbar issue is still present in today's git. The inconsistent ground
seems to be 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=3412
------- Additional Comments From dank(a)kegel.com 2007-25-05 08:33 -------
Glad to hear that installing the Visual C 6 runtime
libraries was all that was needed. Evidently
the Visual C++ 8 libraries rely on the old
MSVCIRT.DLL from Visual C 6, which is bundled with
Windows these days. Could you verify this by
copying just the MSVCIRT.DLL that winetricks installed
somewhere, then create a fresh .wine tree with that
file added, and then try installing the app again?
Wine already implements MSVCRT.DLL from Visual C 6,
perhaps this shows Wine also needs to implement MSVCIRT.DLL.
That's going to be hard, though, since it
seems to be the old C++ iostream library, and has to
be compiled with Visual C++.
cf. http://support.microsoft.com/kb/154419
No, Wine should not run Winetricks. winetricks is just
a debugging tool.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5341
------- Additional Comments From elad_lahav(a)users.sourceforge.net 2007-25-05 08:16 -------
Two observations:
1. The dock buttons appeared after I removed the WinXP theme (now running
without a theme). They still do not work, though.
2. You can dock the relation window by dragging its title bar (not the window
manager frame, the window's own bar).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8363
------- Additional Comments From russofris(a)hotmail.com 2007-25-05 08:10 -------
Thanx Stef,
I will try that tonight. I was getting no love from windbg and eve.exe. Would
it be more beneficial for me to use the current git, or the .9.37 release?
Frank
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8495
------- Additional Comments From paloseco(a)gmail.com 2007-25-05 07:58 -------
What is GLSL and do I know that I have it enabled? I will compile from git and
see if still crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8484
------- Additional Comments From paloseco(a)gmail.com 2007-25-05 07:56 -------
It crashes if I do not start to play inmediately after launching 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=5303
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-25-05 07:51 -------
I would not call this crash:
| err:module:map_image Could not map section .text, file probably truncated
| wine: could not load L"C:\\Program Files\\Common
Files\\InstallShield\\engine\\6\\Intel 32\\IKernel.exe": Bad EXE format for
Anyway, we need to find a reason this file gets truncated because of, right? As
nobody is suggesting, Jonathan, I say let generate new
"+ole,+typelib,+olerelay,+seh,+relay" output to see if this is the same bug.
Maybe add "+file" to that.
Plus maybe longlist this file in your shell (to see its size).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8495
------- Additional Comments From paloseco(a)gmail.com 2007-25-05 07:49 -------
I am using this version because is the official that comes from ubuntu repos.
When I use the package from wine.bugdedicated.com it crashes at the startup:
http://bugs.winehq.org/show_bug.cgi?id=8484
I will try to run the revolt with the latest version of bugdedicated and try it
does not crash.
My laptop:
Core Logic 。Intel® 915GM + ICH6-M
Display 。14.0" WXGA (1280x768) TFT
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8495
paloseco(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.download.com/Re-
| |Volt-demo/3000-7519_4-
| |911246.html
Keywords| |download, FIXME
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8442
------- Additional Comments From vitaliy(a)kievinfo.com 2007-25-05 07:36 -------
Use "unified" diff format - add "-u" to the 'diff'. And make sure you diff from
the top source directory.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8495
------- Additional Comments From vitaliy(a)kievinfo.com 2007-25-05 07:35 -------
Please upgrade to latest Wine version.
What video card? What drivers? Did you enabled GLSL?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8442
------- Additional Comments From utg_vrtz(a)yahoo.se 2007-25-05 07:31 -------
Created an attachment (id=6456)
--> (http://bugs.winehq.org/attachment.cgi?id=6456&action=view)
Fixes the header dependency for OBSD4.1
This should fix it...(my first try went wrong since I forgot to
remove sysctl.h from the list of header files with no dependancy)
Note that the patch may look strange, but is in fact diff output!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8494
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From vitaliy(a)kievinfo.com 2007-25-05 07:31 -------
closing invalid
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8494
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2007-25-05 07:30 -------
If you can't read, here it is again:
*Additional Comments*: Please *do not PASTE* logs and back traces, (attach them
instead).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8363
------- Additional Comments From stefandoesinger(a)gmx.at 2007-25-05 07:10 -------
Eve online seems to catch exceptions on its own. Luckily it does not generate
exceptions itself which it catches and handles, so you can run it comfortably
in winedbg.
You can run exefile directly by cding to bin/Microsoft.VC80.CRT/ and running
wine ../exefile.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=8495
paloseco(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #6449 is|0 |1
obsolete| |
------- Additional Comments From paloseco(a)gmail.com 2007-25-05 07:08 -------
Created an attachment (id=6450)
--> (http://bugs.winehq.org/attachment.cgi?id=6450&action=view)
how it looks in wine
the white dots are from the capture program, nothing to do with 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=8495
Summary: missing graphic objects in Re-volt
Product: Wine
Version: 0.9.33.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paloseco(a)gmail.com
When you select the car there are missing the progress bars that indicate speed,
velocity, weight, etc.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8484
------- Additional Comments From paloseco(a)gmail.com 2007-25-05 07:02 -------
Actually, I have encountered that it does not crash If I enable ALSA software
emulation. If it is hardware just crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8469
------- Additional Comments From damjan.jov(a)gmail.com 2007-25-05 07:00 -------
Nobody else is reporting crashes with emule.
Did you install a package or compile it from source?
Try to delete or rename ~/.wine and reinstall emule.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8431
------- Additional Comments From b.buschinski(a)web.de 2007-25-05 06:18 -------
Confirming, works fine(no crash).
I will close this bug as soon as the patch
is in the current cvs/git and open a new
one for the "wrong working" nhl2001 installer
--
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=8473
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From alex(a)thehandofagony.com 2007-25-05 06:10 -------
This should definitely by changed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8494
Summary: Wine+ wine gecko eendles loop after selecting a search
query in help index
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bduchaj(a)gmail.com
I compiled and installed the GIT (after 0.9.37 in which mshtml was corrected to
display html help in e.g.Flash or Steam, sorry I do not have the CVS version
number at hand) version wine , so help is again
visible, but if you search for a keyword in the Help search box, application
stops to respond, after selecting the search query.
I started Flash from console, and it appears then when you select a topic out of
the index
everything works fine, but when you search a phrase and select a search query it
ends in endless loop, but if you press ctrl+c it continues e.g. is shows the
contents of the query...
Here is what wine spits out
...this repeats after searching and selecting a query
fixme:mshtml:HTMLTxtRange_moveStart (0x65842d0)->(L"character" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_moveEnd (0x65842d0)->(L"textedit" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_findText (0x65842d0)->(L"gethours" 0 00000000 0x33f9e2)
fixme:mshtml:nsnode_to_nsstring_rec Unhandled type 11
fixme:mshtml:HTMLTxtRange_pasteHTML (0x65842d0)->(L"<span
class=\"searchhilite\"></span>")
fixme:mshtml:HTMLTxtRange_moveStart (0x65842d0)->(L"character" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_moveEnd (0x65842d0)->(L"textedit" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_findText (0x65842d0)->(L"gethours" 0 00000000 0x33f9e2)
fixme:mshtml:nsnode_to_nsstring_rec Unhandled type 11
fixme:mshtml:HTMLTxtRange_pasteHTML (0x65842d0)->(L"<span
class=\"searchhilite\"></span>")
fixme:mshtml:HTMLTxtRange_moveStart (0x65842d0)->(L"character" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_moveEnd (0x65842d0)->(L"textedit" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_findText (0x65842d0)->(L"gethours" 0 00000000 0x33f9e2)
fixme:mshtml:nsnode_to_nsstring_rec Unhandled type 11
fixme:mshtml:HTMLTxtRange_pasteHTML (0x65842d0)->(L"<span
class=\"searchhilite\"></span>")
fixme:mshtml:HTMLTxtRange_moveStart (0x65842d0)->(L"character" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_moveEnd (0x65842d0)->(L"textedit" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_findText (0x65842d0)->(L"gethours" 0 00000000 0x33f9e2)
fixme:mshtml:nsnode_to_nsstring_rec Unhandled type 11
fixme:mshtml:HTMLTxtRange_pasteHTML (0x65842d0)->(L"<span
class=\"searchhilite\"></span>")
fixme:mshtml:HTMLTxtRange_moveStart (0x65842d0)->(L"character" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_moveEnd (0x65842d0)->(L"textedit" 1 0x33f984)
fixme:mshtml:HTMLTxtRange_findText (0x65842d0)->(L"gethours" 0 00000000 0x33f9e2)
... etc...
...here I pressed CTRL+C
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
err:mshtml:nsIOService_NewURI Could not get nsIWineURI: 80004002
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x64e16a8)->(0x189ae8)
So using CTRL+C "resolves" the glitch, but it is a temporarly solutions. I was
looking what could be the source of the problem, but I did not find out.. Maybe
someone who knows mshtml in wine....
P.S. I again apologies for braking some rules of the bugzilla....
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5758
------- Additional Comments From rob(a)codeweavers.com 2007-25-05 05:31 -------
That might be the case, or it might just be that the native implementation of
wininet always clears the right stack location.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5758
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-25-05 05:28 -------
>Yeah, it's a buggy app. It probably just happened to work before because the
>stack was cleared by us storing the hostname in a stack variable in
>HTTP_HttpOpenRequest before.
that sounds reasonable, yeah
>Look for this application not working on certain versions of Windows too.
That sounds a bit odd to me, this pokerclient is rather popular, so i would bet
this bug was then discovered long time ago, if it would crash on windows.
Furthermore, i tried a few times with native wininet, and the app never crashes
and starts fine. So maybe native wininet has some kind of builtin sanity check,
that would prevent it from crashing, if apps pass bogus stuff into
HTTP_HttpQueryInfoW? Of course i would have to test that on windows by writing
buggy app, but do you think that might be likely?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8493
Summary: fixme:d3d:get_src_and_opr Unhandled texture arg
WINED3DTA_SPECULAR
Product: Wine
Version: 0.9.37.
Platform: Other
URL: http://appdb.winehq.org/appview.php?iVersionId=8059
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nlaw(a)nildram.co.uk
While running the demo from a command line window using the command 'wine
Dream_Aquarium.scr' the following error is constantly displayed in the console
window, many times a second ...
fixme:d3d:get_src_and_opr Unhandled texture arg WINED3DTA_SPECULAR
Could this be the cause of the washed out look of the tiger barb fish ?
Nick Law
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5758
------- Additional Comments From rob(a)codeweavers.com 2007-25-05 04:59 -------
Yeah, it's a buggy app. It probably just happened to work before because the
stack was cleared by us storing the hostname in a stack variable in
HTTP_HttpOpenRequest before.
You could probably fix it by adding back a variable to the stack and just doing
a memset on it, but it would be a hack and not suitable for inclusion in Wine.
Look for this application not working on certain versions of Windows 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=5758
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-25-05 04:48 -------
hi rob,
I've put extra line
FIXME("extra requested info %d:\n",*lpdwBufferLength);
in the file, hope that's ok:
fixme:wininet:HTTP_HttpQueryInfoW extra requested info 40:
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:wininet:HTTP_HttpQueryInfoW extra requested info 4:
fixme:wininet:HTTP_HttpQueryInfoW extra requested info 4:
fixme:wininet:HTTP_HttpQueryInfoW extra requested info 4:
fixme:wininet:HTTP_HttpQueryInfoW extra requested info -37756928:
wine: Unhandled page fault on write access to 0x00000000 at address 0x601b0b8a
(thread 0022), 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=5774
------- Additional Comments From damjan.jov(a)gmail.com 2007-25-05 04:15 -------
Well unfortunately Alexandre doesn't like the patch, and isn't convinced, so
it hasn't been accepted (yet?) and so far won't be in the next version of wine.
Basically I showed that a UDP datagram with a bad checksum causes a spurious
wakeup, that spurious wakeups break emule, and that trying a read prevents
spurious wakeups, but Alexandre also wants to see that nothing else causes the
spurious wakeups. I am of the opinion that any other causes of spurious
wakeups should be separate bugs and my patch should be accepted regardless,
but what can I do?
If you want to help, and have a lot of patience, run wireshark capturing all
UDP traffic to a file, and run emule on an unpatched wine 0.9.37 with
+winsock,+server,+tid (again to a file, it's many gigabytes long). Then
somehow correlate the 2 logs (hard, wine's log doesn't have timestamps) and
show what happens in the UDP traffic when WSARecvFrom returns error 10035
(EWOULDBLOCK) for a UDP socket (it should only happen once), I suspect you get
a bad UDP checksum. Then I'll go and argue some more :-).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8431
ben(a)atomnet.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |huw(a)codeweavers.com
------- Additional Comments From ben(a)atomnet.co.uk 2007-25-05 04:08 -------
That patch fixes it and works fine.
Assigning.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=8492
------- Additional Comments From dmitry(a)codeweavers.com 2007-25-05 04:02 -------
I'll have a look if I can quickly add support for 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=5758
------- Additional Comments From rob(a)codeweavers.com 2007-25-05 03:50 -------
Louis, I think the application may have forgotten to initialise the
*lpdwBufferLength parameter being passed into HttpQueryInfoW. Can you dump out
that parameter on entrace to the function?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8492
------- Additional Comments From dmitry(a)codeweavers.com 2007-25-05 03:44 -------
In the case of PICTYPE_METAFILE SetMetaFileBitsEx(or SetWinMetaFileBits) +
PlayMetaFile(or PlayEnhMetaFile) should do the trick.
PICTYPE_ENHMETAFILE is similar: SetEnhMetaFileBits + PlayEnhMetaFile
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1744
------- Additional Comments From rob(a)codeweavers.com 2007-25-05 03:35 -------
Usually InstallShield falls back to using CoCreateInstance to launch
IDriver.exe, so this is a bit unusual. However, if the moniker has been
registered in another process then this would indeed be the problem.
The solution is to do RPC calls to a server process (RPCSS) to keep a global
record of the ROT and then cache bits of it on the client-side. The Irot* calls
mentioned in FIXME's are the future RPC calls. The RPC calls obviously depend on
Dan Hipschman's widl work, but what he's done so far might be sufficient, so
I'll try to write out some sample IDL that I think will be needed for the interface.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8492
------- Additional Comments From dank(a)kegel.com 2007-25-05 02:57 -------
bug 4382 has a similar but not identical unknown magic error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4382
------- Additional Comments From dank(a)kegel.com 2007-25-05 02:56 -------
The err:module:import_dll Library MSVCP60.dll error
just means the app probably forgot to bundle all
the needed msvc libraries.
wget http://kegel.com/wine/winetricks
sh winetricks vcrun6
should fix that.
I downloaded "Address Manager 13" and am waiting for the demo key...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8492
------- Additional Comments From focht(a)gmx.net 2007-25-05 02:45 -------
Hello,
judging from the header magic 0x9ac6cdd7 this seems to be Microsoft Windows
Metafile (WMF).
More info at:
http://wvware.sourceforge.net/caolan/ora-wmf.html
Looking at the oleaut32/olepicture.c code it seems there are already
PICTYPE_METAFILE and PICTYPE_ENHMETAFILE cases which are stubs for now.
I think there exist some open source code for this formats (open office and the
like).
So this shouldnt be that hard to support ...
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=8492
Summary: Geoinfo Muenchen fails to display city logo
Product: Wine
Version: CVS
Platform: Other
URL: http://www.vermessung.muenchen.de/angebot/karten/detai_m
.htm
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Geoinfo starts up ok, but the city logo fails to show up,
and on the console one sees
fixme:ole:OLEPictureImpl_Load Unknown magic cdd7, 5510 read bytes:
d7 cd c6 9a 00 00 00 00 d7 cd
c6 9a 00 00 00 00 00 00 ee 02
...
native dcom98 makes the logo show up ok.
This is one of Limux's apps; see http://wiki.winehq.org/LiMuxWineKellerApplications
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8226
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-25-05 02:10 -------
Hi, could you please merge your standalone test into the wine-test framework.
Just put it in dlls/user32/tests/dialog.c. Shouldn't be much of a problem i'd say.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8487
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-25-05 02:02 -------
>wine 0.9.36 is affected but 0.9.35 starts the installer.
There's a known regression in wine-0.9.36, that's fixed in wine-0.9.37. It's now
not completely clear to me what version of wine you run. Could you report back
your version, and if it's wine-0.9.36, upgrade to wine-0.9.37. 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=4449
------- Additional Comments From theo.cowan(a)gmail.com 2007-25-05 01:14 -------
on Ubuntu Feisty I did this to fix the problem.
Installed the msttcorefonts package. and then copied all of the files in
/usr/share/fonts/truetype/msttcorefonts/ to ~/.wine/drive_c/windows/fonts/
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6818
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-25-05 00:57 -------
Juraj, Mike's activity on wine-devel@ and wine-patches@ mailing lists seems to
be suspended for ~3 months already. IMHO it would be good idea to ask him
directly via email about status of his work on Begin/EndResourceUpdate.
--
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=8471
------- Additional Comments From dmitry(a)codeweavers.com 2007-25-05 00:44 -------
>From the description of the bug I'd guess that the problem is caused by the
fact that support for extended pens is completely missing in Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7911
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-25-05 00:41 -------
Chris, what bug number are you talking about?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8487
------- Additional Comments From spmirowski(a)shaw.ca 2007-25-05 00:40 -------
wine 0.9.36 is affected but 0.9.35 starts the installer.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8469
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8471
------- Additional Comments From thestig(a)google.com 2007-24-05 23:42 -------
If you still have problems with Wine 0.9.37, can you check to see if the demo
has the same problem?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8484
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|test |wine-misc
------- Additional Comments From thestig(a)google.com 2007-24-05 23:32 -------
The game wants to switch to 640x480 at 16bpp. It looks like the game will crash
if it can't do 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=1744
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rob(a)codeweavers.com
Status|UNCONFIRMED |NEW
Component|wine-binary |wine-ole
Ever Confirmed| |1
------- Additional Comments From truiken(a)gmail.com 2007-24-05 23:32 -------
We're running into this warn:
warn:ole:RunningObjectTableImpl_GetObject Moniker unavailable - app may require
interprocess running object table
We return MK_E_UNAVAILABLE, which the installer then hangs up on:
Call msi.MsiRecordSetStringA(00000003,00000001,7e6afd00 "ISMsiServerStartup
Failure, Failed to create InstallDriver, Error = 0x800401e3") ret=004e152e
MK_E_UNAVAILABLE is 0x800401e3. The FIXME right above this line says "call
IrotGetObject", but I'm not familiar enough with COM to know what this requires.
Adding Rob to the cc to see if he can shed some light on this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8451
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From thestig(a)google.com 2007-24-05 23:19 -------
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=8452
------- Additional Comments From seryh2003(a)hotmail.com 2007-24-05 20:30 -------
Could you provide a patch or instructions on how to do this please?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8491
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |normal
Component|wine-winelib |wine-misc
------- Additional Comments From vitaliy(a)kievinfo.com 2007-24-05 20:16 -------
What distro?
If you can't read, here it is for you again:
*Additional Comments*: Please *do not PASTE* logs and back traces, (attach them
instead).
Remove ~/.wine dir and run 'winecfg'.
Not major.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7698
------- Additional Comments From stfan4cjk(a)gmail.com 2007-24-05 20:00 -------
yea crossover seems to run CSS without this crash. So whatever crossover has is
what wine needs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=5758
------- Additional Comments From scott(a)open-vote.org 2007-24-05 19:27 -------
Is this still an issue, or has the fix been committed?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8491
matthaeus123(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.7. |0.9.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=8491
------- Additional Comments From matthaeus123(a)gmail.com 2007-24-05 18:59 -------
Oh, sorry! I didn't mean 0.9.7, I meant 0.9.37. And I got mine from this site.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8466
------- Additional Comments From truiken(a)gmail.com 2007-24-05 18:58 -------
The installer tries to start the C-Dilla service, and that fails, so it pops up
the message box about insufficient rights. StartServiceW sees that the service
process is not running, so we call service_start_process. We get down to line
1540 and call CreateProcess to load the service process, then wait on the event
handle and the process. The wait times out and we bail out. The problem is
that we create an event that needs to be signaled by the service process, but
the names of the two events differ in the first character position:
hsvc->name: L"\00c7-DillaSrv"
name: L"__wineservice_\00c7-DillaSrv"
CreateEvent: L"__wineservice_\00c7-DillaSrv" 0xb8
creating event: 0xb8
we're waiting on 0xb8
path: L"c:\\windows\\system32\\DRIVERS\\CDANTSRV.EXE"
CreateProcess worked
name: C-DillaSrv
service->name at this point: L"C-DillaSrv"
service->name: L"C-DillaSrv"
name: L"__wineservice_C-DillaSrv"
CreateEvent: L"__wineservice_C-DillaSrv" 0x3c
creating event: 0x3c
calling setevent: 0x3c
SetEvent: 0x3c
ret: 258
IO_PENDING
C-DillaSrv is the name of the service according to the service process. The
registry entry for the service name is "\00c7-DillaSrv", so my guess is that the
service process has C-DillaSrv hard-coded.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8490
------- Additional Comments From thestig(a)google.com 2007-24-05 18:08 -------
The browse for folder dialog porbably just need to be made bigger. I can do this
in the next couple days. I'm trying to put in the missing "make new folder"
button anyway.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1744
------- Additional Comments From kent.olsson(a)chello.se 2007-24-05 18:07 -------
I have attached a file showing the errors occurring when installing SPCS without
any particular options->pure install
Can anyone help me getting this corrected so the software can be isntalled?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8491
------- Additional Comments From dank(a)kegel.com 2007-24-05 17:32 -------
wine-0.9.7 is pretty old. Can you try with current Wine (0.9.37)?
Also, where did you get your copy of Wine?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7912
------- Additional Comments From ben(a)atomnet.co.uk 2007-24-05 16:54 -------
Someone's working on this now, apparently it's to do with block sizes and the
noise is actually because of a sound effect being looped over and over (really
badly).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7698
------- Additional Comments From fraxbe(a)gmail.com 2007-24-05 16:52 -------
I have had the same problem, but I installed crossover office 6.1 and the
problem seams to be fixed there. They publish the source code, so I guess when
their patches makes their way into regular wine the problem will be fixed. They
publish their sourcecode so I guess it's possible to construct a wine patch from
their wine sources which are available on their webpage.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=7920
saulius.krasuckas(a)elst.vtu.lt changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |saulius.krasuckas(a)elst.vtu.l
| |t
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7912
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-24-05 16:19 -------
Ben, isn't there any console output printed?
Could this be related to unimplemented stuff
in DirectMysic on a codec missing in Wine?
Maybe (tail of) "warn+all" log will help.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8466
------- Additional Comments From truiken(a)gmail.com 2007-24-05 16:08 -------
I wrote some tests and my analysis is wrong. I tested the 'fix' by removing
$WINEPREFIX and running the installer again. Unfortunately, I forgot to set
$WINEPREFIX, which is why it worked.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7403
------- Additional Comments From austinenglish(a)gmail.com 2007-24-05 16:06 -------
If I get a chance in the near future I'll run a regression test, but I'm busy 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=8466
------- Additional Comments From focht(a)gmx.net 2007-24-05 15:54 -------
Hello,
all service calls seem balanced, except this (unusual) call sequence:
--- snip ---
0018:Call advapi32.OpenSCManagerA(00000000,00000000,00000002) ret=60d0385d
0018:Ret advapi32.OpenSCManagerA() retval=0073a028 ret=60d0385d
0018:Call advapi32.OpenServiceA(0073a028,60d12318 "\xc7-DillaSrv",000f01ff)
ret=60d03878
0018:Ret advapi32.OpenServiceA() retval=00734db0 ret=60d03878
0018:Call advapi32.CloseServiceHandle(0073a028) ret=60d03883
0018:Ret advapi32.CloseServiceHandle() retval=00000001 ret=60d03883
0018:Call advapi32.QueryServiceStatus(00734db0,0034f154) ret=60d03893
0018:Ret advapi32.QueryServiceStatus() retval=00000001 ret=60d03893
0018:Call advapi32.StartServiceA(00734db0,00000000,00000000) ret=60d038a9
001d:Call advapi32.StartServiceCtrlDispatcherA(0034febc) ret=00401028
0018:Ret advapi32.StartServiceA() retval=00000000 ret=60d038a9
0018:Call advapi32.CloseServiceHandle(00734db0) ret=60d038b2
0018:Ret advapi32.CloseServiceHandle() retval=00000001 ret=60d038b2
--- snip ---
The SCM handle is refcounted, any OpenService will increment refcout (initial = 1).
CloseServiceHandle() on SCM handle does only destroy handle if refcount dropped
to zero.
That should not be the case here - due to previous OpenService() call.
Please rerun with WINEDEBUG=+advapi so we can see sc_handle trace data
(refcounts) and maybe the real cause for service start failure.
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=881
------- Additional Comments From kelfe(a)gmx.de 2007-24-05 15:36 -------
the cursor issues with Eve Online have been resolved with hardware cursor
support in git and >=wine-0.9.38
I would recommend testing the affected apps again with the updates or version
0.9.38 when released as package
--
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=1432
Bug 1432 depends on bug 2300, which changed state.
Bug 2300 Summary: Galactic Civilizations demo dies with unhandled exception
http://bugs.winehq.org/show_bug.cgi?id=2300
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2300
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-24-05 14:13 -------
>game seems to work with today's wine-git.
Resolving fixed then. Please reopen if anyone still run into 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=4654
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-kernel |wine-msvcrt
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-24-05 14:09 -------
Starts fine with native msvcrt, so changing component.
>When I looked a few months ago, the problem seemed to be $I10_OUTPUT() in msvcrt.
ahziem1: did you find anything interesting that could solve 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=8466
------- Additional Comments From truiken(a)gmail.com 2007-24-05 14:00 -------
The problem is that the installer calls CloseServiceHandle on a handle, and then
expects to be able to use that handle for further service calls. According to
msdn, CloseServiceHandle does not destroy the service control object referred to
by the handle. Our implementation deletes this object. My guess is that these
obects should be released on PROCESS_DETACH instead of in CloseServiceHandle.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8490
------- Additional Comments From juan_lang(a)yahoo.com 2007-24-05 13:53 -------
Please attach here, not on external sites. (It was too slow for me 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=7561
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-24-05 13:42 -------
Daniel, noviktor, can you please retest with latest 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=8490
Summary: SHBrowseForFolder BROWSEINFO lpszTitle gets cropped
(encoding?) in uTorrent
Product: Wine
Version: 0.9.37.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: citizenr(a)gmail.com
Example in uTorrent 1.7
http://img217.imageshack.us/my.php?image=clipboard01hd6.png
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8489
------- Additional Comments From stefandoesinger(a)gmx.at 2007-24-05 12:54 -------
Part of the locking validation for ddrawsurface::blt was done by lockrect,
which is now gone from wined3d.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8489
Summary: Baldur's Gate crashes with an assertion error when
trying to load/start a game
Product: Wine
Version: CVS
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ben(a)atomnet.co.uk
CC: hverbeet(a)gmail.com
The game crashes with an Assertion error after getting about 15% of the way
through loading ingame. This is a regression from around .36 (wasn't in .35, was
in .37).
Completed regression testing shows:
7b48db196f2fbf83a61a3856da65a55552c14382 is first bad commit
commit 7b48db196f2fbf83a61a3856da65a55552c14382
Author: H. Verbeet <hverbeet(a)gmail.com>
Date: Thu May 3 20:58:48 2007 +0200
d3d: Fix the surface locking rectangle validation.
:040000 040000 4cb3d75575e64d3d51d41f9b5ea1bcfba585ddf6
10404bcee5f991052ccf76b8cecdfa8a5499ddb9 M dlls
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5774
------- Additional Comments From f3ua(a)utmib.com 2007-24-05 12:42 -------
I can confirm the issue with emule 0.48a and wine 0.9.37 (non pathed). I'm not
able to test with the code attached, but I hope that the patch will be included
in the next version of wine.
Regards and thanks for your 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=7876
------- Additional Comments From focht(a)gmx.net 2007-24-05 12:31 -------
Hello,
well times change fast nowadays.
That statement was made before a prelimary ntoskrnl component was added.
Though being largely a stub and many api missing is looks doable in future.
I'm currently working on StarForce 3 which lets other copy ring0 protections
like "Kinderkram" (trivia) :)
Lots of work need to be done - outcome yet unclear.
With ntoskrnl/winedevice matured, one can actually try lower priority apps that
ship with kernel drivers.
For the priviledged instructions ... yes, vectored SEH + emulation is the way to go.
I already added some ring0 instructions that other drivers use (TLB related).
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=7403
------- Additional Comments From citizenr(a)gmail.com 2007-24-05 12:23 -------
it did not broke anywhere, we need more info from ppl who have this bug - its
something in their configs thats broken.
I run utorrent under wine on 4 linux computers all the time (4x ubuntu, 3x
7.04, one 6.06), and never seen that 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=5844
------- Additional Comments From citizenr(a)gmail.com 2007-24-05 12:22 -------
wine taskmgr has same problem, minimizing it = empty window and Window List item
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5130
------- Additional Comments From Speeddymon(a)gmail.com 2007-24-05 11:48 -------
Hi Saulius, you are a genius! I never thought to do that lol! I bet it is a
registry change, but unfortunately I havent the time to test it right now. I
will maybe have time next week, after the US Memorial Day holiday is over.
Thanks for the excellent suggestion!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8488
juan_lang(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-msvcrt |wine-misc
------- Additional Comments From juan_lang(a)yahoo.com 2007-24-05 11:24 -------
The FILE pointer passed to fread is NULL - you need to find out why that is, as
this will surely crash. Start by attaching a +msvcrt log to see what file it's
trying to read.
Changing component.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5130
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-24-05 11:21 -------
* Tom wrote:
| I retraced my steps from after install thru what I did on the first run and it
| still wont crash. My guess is that something is not initialized/ created during
| install and is during first run, right after you hit close but before the
| program closes. Then whatever it is that gets done, is already there on
| subsequent runs and that prevents the crash.
Tom, I think about Wine state as of some collection of files
("~/.wine/drive_c/*") and registry entries. You could try finding minimal
changes in files or registry, which stops Viewer crashing.
At first I'd try to determine, which part of Wine state is crucial: registry,
drive_c files or both. For that I would install Viewer and would make a backup
of registry (regedit /e BACKUP.reg) and BACKUP of actual files (cp -a
~/.wine/drive_c ~/.wine/drive_c_BACKUP).
Then I'd reinstall Wine, install fresh copy of Viewer, import BACKUP.reg and
would see if crash is gone. If not, I'd repeat all this, except restoring
registry - here would go file restoration. If not again, then both parts carriy
crucial changes.
With crash gone I'd cut the restored part in a half (half of directories, half
of files in a single directory, half of a registry branches) and would restore
only one half of it. And so on, until only crucial changes are left.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8487
------- Additional Comments From juan_lang(a)yahoo.com 2007-24-05 11:20 -------
Can you perform a regression test to find out what 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=7876
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-24-05 10:19 -------
Anastasius,
|
| supporting native API for kmode drivers doesnt make much sense.
kmode drivers are used for copyprotection in some games, so IMHO Wine will
support at least part of native API in near future. Or it started doing so
already: [3]
| Even if you support/emulate necessary native kmode apis, the driver code would
| immediately cause SIGILL/SIGSEGVs due use of privileged instructions.
Wine could use exception handling to catch at least some of them: [4], no?
[3] http://source.winehq.org/git/wine.git/?a=commit;h=12c169d2
[4] http://source.winehq.org/git/wine.git/?a=commit;h=73cc00f9
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7877
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-24-05 09:54 -------
Installing IE6 and testing with "shdocvw=n" and "shdocvw=b" overrides would
probably help answering this 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.
http://bugs.winehq.org/show_bug.cgi?id=2939
------- Additional Comments From julliard(a)winehq.com 2007-24-05 09:52 -------
If it finds the headers but not the lib at compile time it will fallback to
trying to load the plain .so at runtime, because that's more useful than
failing. What you could do is add a warning about that case in configure --verbose.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4635
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From dank(a)kegel.com 2007-24-05 09:29 -------
Yes, I think so.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7870
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-24-05 09:12 -------
Then maybe +all,-tid trace will reveal
more useful details about this 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=8488
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Summary|Read access fault in msvcrt |Game Eudemons crashes in
| |msvcrt.fread
------- Additional Comments From vitaliy(a)kievinfo.com 2007-24-05 08:46 -------
Not critical
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2939
------- Additional Comments From ben(a)atomnet.co.uk 2007-24-05 08:44 -------
Seems to be a bug in Wine relating to libs. Wine doesn't complain that xrandr is
missing on my machine, but it can't use it at runtime.
[enverex@Xenith ../Games/Baldur's Gate]$ sudo find / | grep -i libXrandr.so
/home/enverex/source/vmware-distrib/lib/lib/libXrandr.so.2
/home/enverex/source/vmware-distrib/lib/lib/libXrandr.so.2/libXrandr.so.2
/usr/lib32/libXrandr.so.2.1.0
/usr/lib32/libXrandr.so.2
/usr/lib/libXrandr.so
/usr/lib/libXrandr.so.2.1.0
/usr/lib/libXrandr.so.2
Making a symlink from /usr/lib32/libXrandr.so.2 to /usr/lib32/libXrandr.so fixed
Wine. Surely if it finds it at compile time it should find it at runtime?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8488
Summary: Read access fault in msvcrt
Product: Wine
Version: 0.9.37.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nemonbox(a)hotmail.com
There is a read access problem between msvcrt and the game Eudemons
Looked around a bit but only found bug reports from years back, haven't had time
to backtrace it to see if it's a new problem or one that never left
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7870
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-24-05 08:35 -------
Some time (probably 1 month) ago I have
been installing ArmA on my PC. The game
installed OK. Of course it didn't run
on my nVidia GF2 card.
So that bug could be a regression or it
is already fixed. Ben, can you retry?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7063
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From vitaliy(a)kievinfo.com 2007-24-05 08:13 -------
The patch is committed. This problem is fixed. However game shows a message box
"Unable to start ActiveMark graphics engine due to unproper system
configuration.\n Make sure you have Internet Explorer 4 or higher installed on
your machine."
But this is another 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=6927
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Civlisation 2: civ2.exe and |Civilization 2: civ2.exe and
|civ2map.exe dont start |civ2map.exe dont start
|(unhandled exeption) |(unhandled exeption)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4915
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Invalid GL call error 502 in|Invalid GL call error 502 in
|Civ4 - causes display issues|Civilization 4 - causes
| |display issues
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8429
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Civ4: Map display issues |Civilization 4: Map display
|(no terrain textures) |issues (no terrain
| |textures)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8487
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-programs |wine-kernel
Keywords| |Installer, 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=7983
------- Additional Comments From junk_mail(a)iol.ie 2007-24-05 07:41 -------
I'm getting something very similar from java jre-1_5_0_11-windows-p-s.exe
fixme:msi:MSI_OpenDatabaseW open failed r = 80030002!
fixme:reg:GetNativeSystemInfo (0x33db54) using GetSystemInfo()
If you enter 'wine jre-1_5_0_11-windows-p-s.exe /?' it shows up all the msi
options, most of which throw this bug, and throw you out.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8480
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-24-05 07:39 -------
Hi, i tried the application on a fresh .wine, with current git, and i could just
make it fine up to the login window (couldn't test further, i don't have an
account). Could you retry, do the same as i did, and report back please? Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8224
------- Additional Comments From bugzilla(a)blinkenlights.org.uk 2007-24-05 06:16 -------
Lightroom -can- be made to run past the database selection stage.
Create a directory containing a blank file (they can have any name) accessible
by programs running in WINE.
When you reach the database creation/opening stage, click Choose, and type the
Windows/WINE path to the file just created. Do NOT select the option to check
for corruption. Once you've done this, press Return with the database dropdown
list focused. If Lightroom doesn't immediately crash at this point, then it
likely won't at all.
The GUI once loaded is still sluggish to the point of unusability, so the
benefits of having reached this point are questionable - but it works, at least.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2939
------- Additional Comments From ben(a)atomnet.co.uk 2007-24-05 05:19 -------
Ok, I also have this issue now and it's driving me mad. Wine is compiled with
XRandR support and "xrandr" shows all my videos modes, but for some reason Wine
says that no supported modes are found (I've tried about 6 games now, all but
one fail entirely because of it, the other switches itself into Windowed mode).
I'll grab a log 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=8040
rastilin(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From rastilin(a)gmail.com 2007-24-05 03:51 -------
It's the result of a shader error. GLSL fixes it, not that the journal works
correctly, but it is 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=4635
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-24-05 03:41 -------
This is fixed , right? Please reopen if you still run into trouble
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4463
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-binary |wine-richedit
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5976
------- Additional Comments From loooony(a)gmail.com 2007-24-05 03:23 -------
i have solved it by setting a virtual desktop for wine. i suppose it's not as
good as it would be - but it works. in my case the problem was that toolboxes
remained when switching to next workspace. now it is possible to minimize
photoshop - but there is no reason to do so, because you can use a single
workspace entirely for that program. still the problem is that other wine apps
are docked in that desktop. it doesn't matter for me since i am using photoshop
and nothing else via wine - not at the same time for sure:)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5828
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-24-05 01:48 -------
Marco, they apply nicely to the daily Wine tree (with some 2-line offsets).
But this may be question for Henri: what technical details prevents your patches
from going into official tree, how do you think?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8365
------- Additional Comments From chrism(a)cjsoftuk.dyndns.org 2007-24-05 01:31 -------
Confirmed here *some of the time only*.
Can't always reproduce OP's bug.
I can reproduce commenter #4's bug, which is interesting to say the least.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7848
saulius.krasuckas(a)elst.vtu.lt changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |saulius.krasuckas(a)elst.vtu.l
| |t
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8487
Summary: WordPerfect 10 installer wont run with out Administrator
Permissions
Product: Wine
Version: 0.9.37.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spmirowski(a)shaw.ca
Problem:
WordPerfect installer seems to recognize that wine is emulating Windows 2000
with out admin permissions, thus not allowing software installs.
Steps:
1a. Run wine Setup32.exe
or
2a. Run wine intro.exe
2b. Pic WordPerfect 2002 from the menu
Error Prompt:
"Setupmgr
You do not have administrator privileges on this machine.
Setup cannot continue."
Additional info:
This didn't happen on prior tested versions of wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8486
Summary: Ulead PhotoImpact 4 fails to start
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: focht(a)gmx.net
Running it puts up a fatal dialog saying
"Unable to read version information from file
C:\\Program Files\\Ulead Systems\\Ulead PhotoImpact\\Iedit.exe,
insufficient memory or system resources low."
I'll attach a +relay,+ver,+text log.
(FWIW, this is one of my wife's "must have" apps.
When she got a new windows box recently, she
*went out and bought* an old copy of Photoimpact 4
on ebay because she missed it so much.)
I'm cc'ing A.F. on this because he wrote a patch for version.dll
recently (see bug 6393).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8485
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 23:11 -------
Closing dup.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6155
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |diogo.meyer(a)gmail.com
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 23:10 -------
*** Bug 8485 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=8485
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 23:10 -------
Not critical. And dup.
*** This bug has been marked as a duplicate of 6155 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8483
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |normal
Component|wine-programs |wine-gdi-(printing)
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 23:07 -------
Did you changed win version in winecfg by any chance? Also please upgrade to
latest Wine version.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8485
Summary: Server Program does not work
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diogo.meyer(a)gmail.com
I am running a server program in my wine and when I tried to connect in it I
received this message:
fixme:sync:CreateIoCompletionPort (0xffffffff, (nil), 00000000, 00000000): stub.
fixme:setupapi:SetupDiGetClassDevsW returning empty list
fixme:setupapi:SetupDiEnumDeviceInfo 0x182c98 0 0x7e0e78a8
fixme:wininet:InternetGetConnectedState always returning LAN connection.
fixme:wininet:InternetGetConnectedState always returning LAN connection.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7793
------- Additional Comments From raptor405(a)gmail.com 2007-23-05 21:03 -------
Still the same problem in 0.9.37... Is there anyone out there looking into this
at all? Probably too much to hope for. I'd be happy to submit any additional
logs and such that might be helpful.
adrussel, how did you get the blackness to go away? I have direct rendering on
(if glxinfo is a viable way to check) but it still shows all 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=8234
------- Additional Comments From truiken(a)gmail.com 2007-23-05 19:22 -------
And in that case, I recant my statement out this being caused by missing COM
classes. We'll have to investigate this more.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8234
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Platform|Other |PC
------- Additional Comments From thestig(a)google.com 2007-23-05 19:19 -------
Turns out the installer worked for me when installing from an ISO copy of the
DVD. I ran the installer from the DVD and it failed here 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=7346
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |ABANDONED
------- Additional Comments From truiken(a)gmail.com 2007-23-05 19:13 -------
We're going to have to mark this as abandoned then, because neither we nor you
can test the software anymore. Reopen if you get the software again.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7383
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |truiken(a)gmail.com
------- Additional Comments From truiken(a)gmail.com 2007-23-05 19:11 -------
We just need to implement the VolumeSelectCombo msi dialog 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.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=8437
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |truiken(a)gmail.com
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From truiken(a)gmail.com 2007-23-05 18:51 -------
We just need to implement patching. I'm posting a couple links for my future
reference:
[Patching] http://msdn2.microsoft.com/en-us/library/aa370578.aspx
[Patch Packages] http://msdn2.microsoft.com/en-us/library/aa370596.aspx
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=8371
d1m1(a)gmx.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From d1m1(a)gmx.ch 2007-23-05 18:38 -------
Tomas Carnecky solved the problem inside yukon. No modification to wine is required.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8461
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |truiken(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=8461
------- Additional Comments From truiken(a)gmail.com 2007-23-05 18:37 -------
The installer calls MsiSetMode(MSIRUNMODE_REBOOTNOW) and then runs the custom
action ISForceReboot. This custom action returns 1604, which is
ERROR_INSTALL_SUSPEND. Wine should take this return value and 'reboot', then
run the install again after the reboot.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8234
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From truiken(a)gmail.com 2007-23-05 18:07 -------
I have reproduced this, and the installer is bailing out because of missing COM
classes:
err:ole:CoGetClassObject class {4590f811-1d3a-11d0-891f-00aa004b2e24} not registered
err:ole:CoGetClassObject no class object {4590f811-1d3a-11d0-891f-00aa004b2e24}
could be created for context 0x1
err:ole:CoGetClassObject class {9a5ea990-3034-4d6f-9128-01f3c61022bc} not registered
err:ole:CoGetClassObject no class object {9a5ea990-3034-4d6f-9128-01f3c61022bc}
could be created for context 0x1
fixme:process:IsWow64Process (0xffffffff 0x34d340) stub!
err:ole:CoGetClassObject class {304ce942-6e39-40d8-943a-b913c40c9cd4} not registered
err:ole:CoGetClassObject no class object {304ce942-6e39-40d8-943a-b913c40c9cd4}
could be created for context 0x1
fixme:process:IsWow64Process (0xffffffff 0x34d340) stub!
err:ole:CoGetClassObject class {304ce942-6e39-40d8-943a-b913c40c9cd4} not registered
err:ole:CoGetClassObject no class object {304ce942-6e39-40d8-943a-b913c40c9cd4}
could be created for context 0x1
After downloading the providing dlls and registering them, we still get errors:
fixme:rpc:RpcBindingSetAuthInfoExW unsupported AuthnSvc 10
fixme:ole:CoCreateInstance no instance created for interface
{f7898af5-cac4-4632-a2ec-da06e5111af2} of class
{304ce942-6e39-40d8-943a-b913c40c9cd4}, hres is 0x800706d3
fixme:process:IsWow64Process (0xffffffff 0x34d340) stub!
fixme:rpc:RpcBindingSetAuthInfoExW unsupported AuthnSvc 10
fixme:ole:CoCreateInstance no instance created for interface
{f7898af5-cac4-4632-a2ec-da06e5111af2} of class
{304ce942-6e39-40d8-943a-b913c40c9cd4}, hres is 0x800706d3
So it'll take quite a bit of work to get this working.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8395
------- Additional Comments From truiken(a)gmail.com 2007-23-05 17:25 -------
It doesn't take hours to do a regression test, especially when you only have two
releases to test. The closer you get to the regression commit, the fewer
changes are made to the tree that you have to recompile. If you don't do the
regression tests, this bug will likely be marked as abandoned.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8484
paloseco(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8395
------- Additional Comments From mike(a)cchtml.com 2007-23-05 17:12 -------
It takes 30 minutes to compile Wine on my 32-bit machine, which is a 3.06ghz P4.
I haven't the time to do proper regression testing so I guess I'm out of luck?
I'm sure not that much has changed between one version of Wine and it should be
isolated to the libraries touching the X driver. I'm only used to CVS, but I
guess I'll dig through the git tree and look for you. I'll report back if no one
else has found an idea.
Spending a few minutes looking over a dozen patches is easier than spending
*hours* recompiling Wine, IMHO. :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8234
------- Additional Comments From truiken(a)gmail.com 2007-23-05 16:43 -------
> This is a msi error and means "ERROR_INVALID_PARAMETER".
No, that's not an msi error. That's a win32 error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3260
------- Additional Comments From focht(a)gmx.net 2007-23-05 15:56 -------
Hello again,
while you're bugfixing QueryServiceConfigW() could you please add the following
to SetServiceStatus():
--- snip dlls/advapi32/service.c ---
/* Return the corresponding text for service status */
static inline LPCSTR service_status_to_string( DWORD Status)
{
switch( Status)
{
case SERVICE_STOPPED: return "stopped";
case SERVICE_START_PENDING: return "start pending";
case SERVICE_STOP_PENDING: return "stop pending";
case SERVICE_RUNNING: return "running";
case SERVICE_CONTINUE_PENDING: return "continue pending";
case SERVICE_PAUSE_PENDING: return "pause pending";
case SERVICE_PAUSED: return "paused";
default: return "unknown";
}
}
BOOL WINAPI
SetServiceStatus( SERVICE_STATUS_HANDLE hService, LPSERVICE_STATUS lpStatus )
{
...
if (service)
{
memcpy( &service->status, lpStatus, sizeof(SERVICE_STATUS) );
TRACE("Set service status to %d (%s)\n",service->status.dwCurrentState,
service_status_to_string(service->status.dwCurrentState));
}
..
}
--- snip dlls/advapi32/service.c ---
Printing out the actual service state in human readable format for trace.
It is absolutely annoying looking up the status definitions every time.
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=7825
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2007-23-05 15:47 -------
* Alfredo wrote:
|
| The error only happens after I choose the correct folder to install...
Can you, Alfredo, please say exactly when does the error _not_ happen?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8481
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 14:31 -------
It's a duplicate.
*** This bug has been marked as a duplicate of 6591 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6591
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |sasa_stole(a)yahoo.co.uk
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 14:31 -------
*** Bug 8481 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=8135
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 14:27 -------
Closing dup
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8135
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 14:27 -------
Duplicate then. You do not have enough explanation here what is the real
problem. An "error with EnumDisplayModes" tells us nothing.
*** This bug has been marked as a duplicate of 7792 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7792
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 14:27 -------
*** Bug 8135 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=8480
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Run-time error '5': Incalid |EvilFlames crashes with Run-
|procedure call or argumen |time error '5': Invalid
| |procedure call or argumen
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 14:19 -------
Please attach terminal output here (as a file), don't use outside links.
Can you try with earlier Wine version? Like 0.9.36?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8481
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-23-05 14:11 -------
>version: 20050930
Is that a joke/mistake? If real, update to latest wineversion!
Furthermore, make sure you have msvcr80.dll in the directory where the app is,
and also make sure you have the manifest file Microsoft.VC80.CRT.manifest in
there. Then try again, and report back please. Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8483
Summary: WordPerfect 10 Does not work
Product: Wine
Version: 0.9.33.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markekeller(a)gmail.com
I opened it, and it crashed, displaying the following error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8482
Summary: Windows Help Does Not Work
Product: Wine
Version: 0.9.33.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-help
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markekeller(a)gmail.com
I played Windows Solitaire to test out Wine, and when I clicked Help ->
Contents, it crashed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7093
juan_lang(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From juan_lang(a)yahoo.com 2007-23-05 12:53 -------
The patch has been committed, so I'm closing this (crash.) Being difficult to
install is a subjective thing, so please reopen if there's a particular symptom
you'd like to focus on.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8481
juan_lang(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-comctl32 |wine-misc
------- Additional Comments From juan_lang(a)yahoo.com 2007-23-05 12:50 -------
Not a comctl32 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=8481
Summary: PlayChess: it is not runing
Product: Wine
Version: 20050930
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sasa_stole(a)yahoo.co.uk
I tried to install playchess.exe, after installation when I started playchess
I got runtime error: R6034 An application has made an attempt to load the C
runtime library incorrectly
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8480
------- Additional Comments From bdgraue(a)web.de 2007-23-05 12:12 -------
http://phpfi.com/236385 <-- konsolelog
Run-time error '5': Invalid procedure call or argument <-- thats the right
error i get, i had some typo's sry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8135
------- Additional Comments From kerick(a)shiftedbit.net 2007-23-05 11:54 -------
The problem I'm having is here along with the logs and notes on my EFS bug
report on what happens with the newer versions of wine.
http://bugs.winehq.org/show_bug.cgi?id=7792
Also, I never had different versions of wine installed at once, I removed the
latest to test the old version and vice versa.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7071
cyberfrag(a)gmx.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From cyberfrag(a)gmx.net 2007-23-05 11:16 -------
Confirmed - this one is gone with 0.9.36.
Haven't had time to check what caused this, but I guess that's pretty academic
now anyway :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8480
Summary: Run-time error '5': Incalid procedure call or argumen
Product: Wine
Version: 0.9.37.
Platform: PC
URL: http://www.evilflames.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bdgraue(a)web.de
Run-time error '5': Incalid procedure call or argument
if i try to start
wine EvilFlamesBar.exe
wine EvilFlamesUpdater.exe
wine EvilFlamesLauncher.exe
none of them work for me, all have the same error
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8475
juan_lang(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-kernel |wine-gdi-(printing)
Keywords| |patch
------- Additional Comments From juan_lang(a)yahoo.com 2007-23-05 10:32 -------
Trying a more appropriate component, as it clearly isn't in kernel. Also adding
patch keyword.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8472
------- Additional Comments From pgr(a)arcelectronicsinc.com 2007-23-05 10:12 -------
I did the following:
(su) make uninstall
make distclean
git version 1.3.3
git-checkout -f
git-fetch
git-rebase origin
./configure --verbose
configure: libcapi20 development files not found.
configure: Wine will be built without ISDN support. (capi2032.dll)
make depend && make
Then running in the new prefix give the bad pointer crash.
Also make test in a new prefix ran until a font fail.
I will retest with a different system/distro when I upgrade from mandriva 2006
to something in the next few months.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2194
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)gmail.com 2007-23-05 09:39 -------
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=2190
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)gmail.com 2007-23-05 09:38 -------
No reply, 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=2185
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)gmail.com 2007-23-05 09:38 -------
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=2179
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)gmail.com 2007-23-05 09:37 -------
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=2178
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)gmail.com 2007-23-05 09:36 -------
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=2177
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)gmail.com 2007-23-05 09:35 -------
Both issues listed here are fixed. 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.