http://bugs.winehq.org/show_bug.cgi?id=22644
Summary: DX8000: Crashes during startup Product: Wine Version: 1.1.42 Platform: x86 URL: http://support.pelco.com/view.php?fDocumentId=20688 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: doofusroy@gmail.com
Created an attachment (id=27855) --> (http://bugs.winehq.org/attachment.cgi?id=27855) Command line output.
Tested with vanilla Ubuntu 10.04 install and it's Wine 1.1.42 via its package manager, as well as using "winetricks mfc42.dll", I'm unable to get beyond the startup of the program where the status says "init comm..." and I get the blanket program error "...has encountered a serious problem and needs to close."
My current test is on an AMD 64-bit install of Ubuntu, but I have tested it from a 32-bit as well giving a similar error. I don't have that system running at this time, but I can get it back up in a day if anyone needs to go that route as well.
I've included the URL to the download, as well as attached the output I see from wine via the command prompt.
http://bugs.winehq.org/show_bug.cgi?id=22644
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download
http://bugs.winehq.org/show_bug.cgi?id=22644
--- Comment #1 from Jason Hollinden doofusroy@gmail.com 2010-05-10 13:41:09 --- As a side note, I was farting around googling lines of that attachment, and it seems most that have that ddraw backtrace people ask for a "glxinfo | grep direct" to see if it's enabled, and the answer is "Yes" for mine.
http://bugs.winehq.org/show_bug.cgi?id=22644
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |kennybobs@o2.co.uk
--- Comment #2 from Ken Sharp kennybobs@o2.co.uk 2010-05-10 14:05:02 --- How are you installing it? The client asks for a password before I can do anything.
http://bugs.winehq.org/show_bug.cgi?id=22644
--- Comment #3 from Jason Hollinden doofusroy@gmail.com 2010-05-10 14:13:12 --- Whoops, sorry. I forgot to mention that the default password for the program is 000000 (six zeros).
As for installing, I just set the executable flag via the Gnome properties for the .exe's icon, then when I double-clicked it ran the standard windows install.
http://bugs.winehq.org/show_bug.cgi?id=22644
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #27855|0 |1 is obsolete| |
--- Comment #4 from Ken Sharp kennybobs@o2.co.uk 2010-05-10 14:29:43 --- Created an attachment (id=27858) --> (http://bugs.winehq.org/attachment.cgi?id=27858) wine-1.1.44-19-gd2a0188 console output
With debug symbols.
http://bugs.winehq.org/show_bug.cgi?id=22644
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1
--- Comment #5 from Ken Sharp kennybobs@o2.co.uk 2010-05-10 14:30:44 --- Confirming.
Backtrace: =>0 0xb7565bb6 memcpy+0x46() in libc.so.6 (0x0032ee48) 1 0x7e63bb3b IDirectDrawSurfaceImpl_Blt+0x3e4(iface=0x195630, DestRect=(nil), SrcSurface=(nil), SrcRect=(nil), Flags=0x0400, DDBltFx=0x32efbc) [/home/test/wine-git/wine32/dlls/ddraw/../../../dlls/ddraw/surface.c:798] in ddraw (0x0032eed8) 2 0x7e63bb3b IDirectDrawSurfaceImpl_Blt+0x3e4(iface=0x195538, DestRect=(nil), SrcSurface=(nil), SrcRect=(nil), Flags=0x0400, DDBltFx=0x32efbc) [/home/test/wine-git/wine32/dlls/ddraw/../../../dlls/ddraw/surface.c:798] in ddraw (0x00fe21b8)
http://bugs.winehq.org/show_bug.cgi?id=22644
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #27858|0 |1 is obsolete| |
--- Comment #6 from Ken Sharp kennybobs@o2.co.uk 2010-11-25 10:35:32 CST --- Created an attachment (id=32126) --> (http://bugs.winehq.org/attachment.cgi?id=32126) wine-1.3.7-233-g9867c39 console output
Still crashes out in wine-1.3.7-233-g9867c39, although the backtrace is different.
Backtrace: =>0 0xf749dc96 in libc.so.6 (+0x75c96) (0x0033ee60) 1 0x00000000 (0x0033eee0) 2 0x009a44f6 in display (+0x44f5) (0x01032380) 3 0x00000000 (0x009a50b4) 4 0x009a1ff0 in display (+0x1fef) (0x009a1f00)
http://bugs.winehq.org/show_bug.cgi?id=22644
--- Comment #7 from Juan Lang juan_lang@yahoo.com 2010-11-25 11:57:29 CST --- (In reply to comment #6)
Still crashes out in wine-1.3.7-233-g9867c39
This looks suspect: err:winediag:X11DRV_WineGL_InitOpenglInfo The Mesa OpenGL driver is using software rendering, most likely your OpenGL drivers haven't been installed correctly
http://bugs.winehq.org/show_bug.cgi?id=22644
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000@yahoo.co.uk Component|-unknown |directx-ddraw
--- Comment #8 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2010-11-25 13:27:45 CST --- I get the sam ecrash as in comment #5. Apparently it's choking in SrcRect being NULL. A hack like below makes the app start fine for me:
diff --git a/dlls/ddraw/surface.c b/dlls/ddraw/surface.c index 5d0a8e6..fca173b 100644 --- a/dlls/ddraw/surface.c +++ b/dlls/ddraw/surface.c @@ -904,9 +904,11 @@ static HRESULT WINAPI ddraw_surface7_Blt(IDirectDrawSurface * and replace the ddraw surfaces with the wined3d surfaces * So far no blitting operations using surfaces in the bltfx struct are sup */ + +if(SrcRect) hr = IWineD3DSurface_Blt(This->WineD3DSurface, DestRect, Src ? Src->WineD3D SrcRect, Flags, (WINEDDBLTFX *)DDBltFx, WINED3DTEXF_LINEAR); - +else hr = DDERR_UNSUPPORTED; LeaveCriticalSection(&ddraw_cs); switch(hr) {
http://bugs.winehq.org/show_bug.cgi?id=22644
joaopa jeremielapuree@yahoo.fr changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jeremielapuree@yahoo.fr
--- Comment #9 from joaopa jeremielapuree@yahoo.fr 2011-07-23 06:31:21 CDT --- still a bug in current wine? The link is dead.
http://bugs.winehq.org/show_bug.cgi?id=22644
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords|download | URL|http://support.pelco.com/vi | |ew.php?fDocumentId=20688 |
http://bugs.winehq.org/show_bug.cgi?id=22644
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|directx-ddraw |directx-d3d
http://bugs.winehq.org/show_bug.cgi?id=22644
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download URL| |http://www.safe-n-secureinc | |.com/Support/Pelco/DX8000%2 | |0-%20PC%20Client%20v2.0.exe
--- Comment #10 from Ken Sharp kennybobs@o2.co.uk 2012-09-11 21:42:03 CDT --- Hard to tell. There is a crash in wine-1.5.12-222-gfd05f54 but the backtrace is different again.
http://bugs.winehq.org/show_bug.cgi?id=22644
--- Comment #11 from Ken Sharp kennybobs@o2.co.uk 2012-09-11 21:42:44 CDT --- "winetricks vb6run mfc42 flash11" to get this far.
http://bugs.winehq.org/show_bug.cgi?id=22644
--- Comment #12 from Ken Sharp kennybobs@o2.co.uk 2013-07-14 08:38:30 CDT --- Still present in wine-1.6-rc5.
http://bugs.winehq.org/show_bug.cgi?id=22644
hanska2@luukku.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |hanska2@luukku.com
--- Comment #13 from hanska2@luukku.com --- How do you run this thing?
While you install it you can choose between 2 options, I choose the top one.
Then I went into the install directory and by accident I run setup.exe which did some installing suff...
I found the launcher.exe from same directory and it complains FLASH.OCX.
I used vb6run, but didt install the mcf42 so far.
When I run the setup.exe from installed directory it complained about these
wine setup err:module:import_dll Library polstore.dll (which is needed by L"C:\DX8000IPSec\text2pol.DLL") not found err:module:import_dll Library text2pol.DLL (which is needed by L"C:\DX8000IPSec\ipsecpol.exe") not found err:module:import_dll Library MFC42u.DLL (which is needed by L"C:\DX8000IPSec\ipsecutil.DLL") not found err:module:import_dll Library polstore.dll (which is needed by L"C:\DX8000IPSec\ipsecutil.DLL") not found err:module:import_dll Library ipsecutil.DLL (which is needed by L"C:\DX8000IPSec\ipsecpol.exe") not found err:module:import_dll Library polstore.dll (which is needed by L"C:\DX8000IPSec\ipsecpol.exe") not found err:module:LdrInitializeThunk Main exe initialization for L"C:\DX8000IPSec\ipsecpol.exe" failed, status c0000135
wine 1.7.22
https://bugs.winehq.org/show_bug.cgi?id=22644
Ken Sharp imwellcushtymelike@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords|download | URL|http://www.safe-n-secureinc | |.com/Support/Pelco/DX8000%2 | |0-%20PC%20Client%20v2.0.exe |
--- Comment #14 from Ken Sharp imwellcushtymelike@gmail.com --- The link is dead and I cannot find another. Does anyone still have a working copy? Is this still an issue on Wine 1.7.45 or later?
https://bugs.winehq.org/show_bug.cgi?id=22644
winetest@luukku.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |00cpxxx@gmail.com, | |winetest@luukku.com
https://bugs.winehq.org/show_bug.cgi?id=22644
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |ABANDONED Status|NEW |RESOLVED
--- Comment #15 from Bruno Jesus 00cpxxx@gmail.com --- Over 1 year since last retest request, no download available, last valid test 2 years ago.
https://bugs.winehq.org/show_bug.cgi?id=22644
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #16 from Frédéric Delanoy frederic.delanoy@gmail.com --- Closing ABANDONED bugs.