http://bugs.winehq.org/show_bug.cgi?id=7959
------- Additional Comments From jasmine.aura(a)yahoo.com 2007-18-05 18:19 -------
After going from wine 0.9.32 to 0.9.37, Photoshop 7 Stopped working for me.
The program starts up and loads, then a popup warning message saying something
like "the default photoshop UI fonts are missing" then when I hit OK Photoshop
crashed with the following errors:
fixme:actctx:QueryActCtxW 80000010 0x116283c (nil) 1 0x33fdc4 8 (nil)
fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
err:ole:CoGetClassObject class {4955dd33-b159-11d0-8fcf-00aa006bcc59} not registered
err:ole:CoGetClassObject no class object {4955dd33-b159-11d0-8fcf-00aa006bcc59}
could be created for context 0x1
X Error of failed request: BadWindow (invalid Window parameter)
Major opcode of failed request: 2 (X_ChangeWindowAttributes)
Resource id in failed request: 0x0
Serial number of failed request: 148
Current serial number in output stream: 161
The above problem was reproducable every time. It has been working fine for me
on 0.9.32, until i recently upgraded to 0.9.37, so I tried re-installing it and
got the same error message after running it from the new install. Then I
decided to use the wine "uninstaller" tool to remove it and install it clean
(and also double-checking 'regedit' to make sure there are no stale registry
entries related to Adobe/Photoshop in the registry)
Then when I re-ran the installer, it comes up, soon as I click on "Next" with
the mouse - or even hit enter on the keyboard, the installer crashes with the
familiar message (which i've been seeing since 0.9.34 as discussed in Wine
ISSUE#328 - X Error - under Graphics section):
X Error of failed request: BadPixmap (invalid Pixmap parameter)
Major opcode of failed request: 54 (X_FreePixmap)
Resource id in failed request: 0x38000eb
Serial number of failed request: 1394
Current serial number in output stream: 1446
Also, the above problem is always reproducable when running the Photoshop 7
installer (w/ Wine-0.9.37 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=8433
------- Additional Comments From alfeno(a)gmail.com 2007-18-05 18:17 -------
Wine Version: 0.9.37
Linux kubuntu 2.6.21.1-linux2.6.21.1 #2 SMP Sun May 6 12:36:30 BRT 2007 i686
GNU/Linux
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8433
Summary: After Burner 3D
1.0 Game - crashes in loding Screen
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alfeno(a)gmail.com
After Burner 3D is a remake of Sega's Genesis game.
In the screen of "loding" the game stops to load
http://digilander.iol.it/brodarodasoft2/AB3D_Setup.exe (To 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=7833
------- Additional Comments From focht(a)gmx.net 2007-18-05 18:07 -------
Hello,
sorry but how this supposed to work?
You're passing a bogus pointer into CreateTimerQueueTimer() which is a stub itself.
--- snip dlls/shlwapi/ordinal.c ---
HANDLE WINAPI SHSetTimerQueueTimer(HANDLE hQueue,
WAITORTIMERCALLBACK pfnCallback, LPVOID pContext, DWORD dwDueTime,
DWORD dwPeriod, LPCSTR lpszLibrary, DWORD dwFlags)
{
HANDLE *phNewTimer;
/* SHSetTimerQueueTimer flags -> CreateTimerQueueTimer flags */
if (dwFlags & TPS_LONGEXECTIME) {
dwFlags &= ~TPS_LONGEXECTIME;
dwFlags |= WT_EXECUTELONGFUNCTION;
}
if (dwFlags & TPS_EXECUTEIO) {
dwFlags &= ~TPS_EXECUTEIO;
dwFlags |= WT_EXECUTEINIOTHREAD;
}
CreateTimerQueueTimer(phNewTimer, hQueue, pfnCallback, pContext,
dwDueTime, dwPeriod, dwFlags);
return *phNewTimer;
}
--- snip dlls/shlwapi/ordinal.c ---
The value of phNewTimer is != 0 due the way the compiler generated the stack frame.
That bogus value gets returned to client (msmoney code).
Client thinks "oh nice, i got a handle, the function must have succeeded, lets
go on" (val != 0 -> valid handle for client).
The client executes a loop in main thread, where it does WaitForMultipleObjEx()
(waiting on two handles) and optionally pumps messages.
One of the handles is actually an event which is (re)set in timer callback.
Due to non-existing implementation of the timer queue api, the callback gets
never called.
The event is never signalled, it loops forever.
So how about:
--- snip ---
HANDLE hNewTimer;
...
return CreateTimerQueueTimer( &hNewTimer, ...) ? hNewTimer : NULL;
--- snip ---
Which is of course useless yet because as pointed out in my previous comment,
the whole timer queue api is missing.
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=8425
------- Additional Comments From a_villacis(a)palosanto.com 2007-18-05 17:02 -------
UPDATE: after installing CVS snapshot at 2007/05/18 16:56 GMT -5 , the installer
does not crash inmediately, but it fails in a different way.
Popup appears with the following message:
"1608: No se ha podido crear la instancia de InstallDriver, código devuelto:
-2147221021"
Translation: Could not create instance of InstallDriver, returned code: -2147221021
After this, a segmentation fault happens.
Also, the following appears on the console:
fixme:advapi:LookupAccountNameW (null) L"alex" (nil) 0x34be68 (nil) 0x34be64
0x34be70 - stub
fixme:advapi:LookupAccountNameW (null) L"alex" 0x179e40 0x34be68 0x179c38
0x34be64 0x34be70 - stub
err:msi:ITERATE_DuplicateFiles Failed to copy file L"c:\\Archivos de
programa\\Archivos comunes\\InstallShield\\Driver\\9\\Intel 32\\IDriver.exe" ->
L"c:\\Archivos de programa\\Archivos comunes\\InstallShield\\Driver\\9\\Intel
32\\", last error 80
fixme:msi:ITERATE_DuplicateFiles We should track these duplicate files as well
fixme:msi:msi_unimplemented_action_stub RemoveFolders -> 2 ignored
L"CreateFolder" table values
err:ole:init_proxy_entry_point GetFuncDesc 8002802b should not fail here.
err:ole:proxy_manager_create_ifproxy Could not create proxy for interface
{0656be49-b286-4bba-aed8-2a09eeb4a744}, error 0x8002802b
err:ole:CoUnmarshalInterface IMarshal::UnmarshalInterface failed, 0x8002802b
fixme:ole:CFProxy_CreateInstance CoMarshalInterface failed, 8002802b
fixme:ole:CoCreateInstance no instance created for interface
{0656be49-b286-4bba-aed8-2a09eeb4a744} of class
{b3ede298-ae75-4a1c-ab7e-1b9229b77bbe}, hres is 0x8002802b
wine: Unhandled page fault on read access to 0x004d2028 at address 0x408df9
(thread 0009), starting debugger...
Unhandled exception: page fault on read access to 0x004d2028 in 32-bit code
(0x00408df9).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
EIP:00408df9 ESP:0034a74c EBP:0034c3a8 EFLAGS:00010206( - 00 - RIP1)
EAX:004d2028 EBX:00441c08 ECX:800401e3 EDX:00000001
ESI:00000000 EDI:0034ed48
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=836
------- Additional Comments From juan_lang(a)yahoo.com 2007-18-05 16:39 -------
There's been some recent activity there - is this done 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=8226
juan_lang(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |patch
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8432
------- Additional Comments From vitaliy(a)kievinfo.com 2007-18-05 16:07 -------
Exact text of the error would be helpful. Also what does 'ls -la
~/.wine/dosdevices' say? One more thing, if you copy all the files to your
system into ~/.wine/drive_c and run it from there, does it 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.