http://bugs.winehq.org/show_bug.cgi?id=14775
Summary: Visere fails to run Product: Wine Version: CVS/GIT Platform: PC URL: http://www.dmmd.net/ OS/Version: Linux Status: NEW Severity: enhancement Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: austinenglish@gmail.com
Created an attachment (id=15306) --> (http://bugs.winehq.org/attachment.cgi?id=15306) +relay,+seh,+tid,+heap
While testing bug 10903, seems the new version of visere fails to run, get a heap error: austin@ubuntu:~/.wine/drive_c/Program Files/DMMD/Visere$ wine Visere.exe fixme:heap:HeapSetInformation 0x110000 0 0x33fe30 4 err:heap:HEAP_ValidateInUseArena Heap 0x110000: in-use arena 0x1380a0 next block has PREV_FREE flag err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7ef9dd0a
+relay,+seh,+tid,+heap attached
http://bugs.winehq.org/show_bug.cgi?id=14775
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download
http://bugs.winehq.org/show_bug.cgi?id=14775
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000@yahoo.co.uk Component|-unknown |shlwapi
--- Comment #1 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-08-05 17:51:30 --- Looks like it chokes in: :Call shlwapi.UrlCanonicalizeW(0014b118 L"<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\r\n\r\n<Excorio>\r\n\r\n<Obj x="000" y="000" w="024" h="024">AlwaysOnTop_DisableState</Obj>\r\n<Obj x="024" y="000" w="024" h="024">AlwaysOnTop_NormalState</Obj>\r\n<Obj x="04 8" y="000" w="024" h="024">AlwaysOnTop_OverState</Obj>"...,001540d0,0032faa8,00000000) ret=005623c0
Maybe the URL string is too long? i wouldn't know ;)
With native shlwapi it gets further; then crashes into unimplemented function gdiplus.dll.GdipCloneBitmapAreaI. With winetricks gdiplus it starts fine
http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #2 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-08-05 17:59:48 --- simple hack to get the app running:
diff --git a/dlls/shlwapi/url.c b/dlls/shlwapi/url.c index 03941a9..1cbae31 100644 --- a/dlls/shlwapi/url.c +++ b/dlls/shlwapi/url.c @@ -331,7 +331,7 @@ HRESULT WINAPI UrlCanonicalizeW(LPCWSTR pszUrl, LPWSTR pszCa *pszCanonicalized = 0; return S_OK; } - + if (lstrlenW(pszUrl) > INTERNET_MAX_URL_LENGTH) return E_FAIL; nByteLen = (lstrlenW(pszUrl) + 1) * sizeof(WCHAR); /* length in bytes */ lpszUrlCpy = HeapAlloc(GetProcessHeap(), 0, INTERNET_MAX_URL_LENGTH * sizeof(WCHAR));
haven't got a clue if it's correct ;)
http://bugs.winehq.org/show_bug.cgi?id=14775
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch
--- Comment #3 from Austin English austinenglish@gmail.com 2008-08-05 18:07:05 --- Thanks for the quick fix Louis ;-).
http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #4 from Lei Zhang thestig@google.com 2008-08-06 12:52:59 --- Maybe PathIsURL is the right path to a proper solution. Having test cases probably helps.
http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #5 from Austin English austinenglish@gmail.com 2009-01-13 22:05:58 --- Still present in git.
http://bugs.winehq.org/show_bug.cgi?id=14775
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Version|CVS/GIT |unspecified
--- Comment #6 from Austin English austinenglish@gmail.com 2009-01-20 02:39:46 --- Removing deprecated CVS/GIT version tag. Please retest in current git. If the bug is still present in today's wine, but was not present in some earlier version of wine, please update version field to earliest known version of wine that had the bug. Thanks!
http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #7 from Luca Bennati lucak3@gmail.com 2009-08-13 03:36:43 --- Created an attachment (id=23039) --> (http://bugs.winehq.org/attachment.cgi?id=23039) Visere 4 crash log
Issue still valid in wine-1.1.27-126-gc92bb27
Attached is normal crash log.
http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #8 from Luca Bennati lucak3@gmail.com 2009-08-13 03:38:20 --- Created an attachment (id=23040) --> (http://bugs.winehq.org/attachment.cgi?id=23040) bzip2'ed crash log with WINEDEBUG=+relay,+seh,+tid,+heap
http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #9 from Nikolay Sivov bunglehead@gmail.com 2010-05-31 11:46:11 --- Please retest with 1.2-rc2. A related commit is fc543890d103d87f1a343c924278f89d953071b9, this could be fixed probably.
http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #10 from Austin English austinenglish@gmail.com 2010-06-03 13:21:11 --- No longer crashes, but just pops up a dialog saying it has an error. There is no terminal output.
http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #11 from Luca Bennati lucak3@gmail.com 2011-11-05 16:30:04 CDT --- On 1.3.32, it regressed to crashing because of unimplemented msvcp80.dll.??0?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z , already covered by bug 17313. I'll add a note about it there.
http://bugs.winehq.org/show_bug.cgi?id=14775
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED
--- Comment #12 from Austin English austinenglish@gmail.com 2013-01-16 17:23:33 CST --- http://pictomic.com/test_visere/4.1/VisereSetup_4.1.9131.zip
austin@aw25 ~ $ sha1sum VisereSetup_4.1.9131.zip 1ffb7d112cbf55d30b31991c0ed7541fd4602eeb VisereSetup_4.1.9131.zip austin@aw25 ~ $ du -h VisereSetup_4.1.9131.zip 4.2M VisereSetup_4.1.9131.zip
works now.
http://bugs.winehq.org/show_bug.cgi?id=14775
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #13 from Alexandre Julliard julliard@winehq.org 2013-01-18 14:57:23 CST --- Closing bugs fixed in 1.5.22.