[Bug 14775] New: Visere fails to run
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(a)winehq.org ReportedBy: austinenglish(a)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(a)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 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000(a)yahoo.co.uk Component|-unknown |shlwapi --- Comment #1 from Louis Lenders <xerox_xerox2000(a)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 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 --- Comment #2 from Louis Lenders <xerox_xerox2000(a)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 ;) -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --- Comment #3 from Austin English <austinenglish(a)gmail.com> 2008-08-05 18:07:05 --- Thanks for the quick fix Louis ;-). -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 --- Comment #4 from Lei Zhang <thestig(a)google.com> 2008-08-06 12:52:59 --- Maybe PathIsURL is the right path to a proper solution. Having test cases probably helps. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 --- Comment #5 from Austin English <austinenglish(a)gmail.com> 2009-01-13 22:05:58 --- Still present in git. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|CVS/GIT |unspecified --- Comment #6 from Austin English <austinenglish(a)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! -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 --- Comment #7 from Luca Bennati <lucak3(a)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. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 --- Comment #8 from Luca Bennati <lucak3(a)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 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 --- Comment #9 from Nikolay Sivov <bunglehead(a)gmail.com> 2010-05-31 11:46:11 --- Please retest with 1.2-rc2. A related commit is fc543890d103d87f1a343c924278f89d953071b9, this could be fixed probably. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 --- Comment #10 from Austin English <austinenglish(a)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. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 --- Comment #11 from Luca Bennati <lucak3(a)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(a)DU?$char_traits(a)D@std@@V?$allocator(a)D@2@@std@@QAE(a)H@Z , already covered by bug 17313. I'll add a note about it there. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #12 from Austin English <austinenglish(a)gmail.com> 2013-01-16 17:23:33 CST --- http://pictomic.com/test_visere/4.1/VisereSetup_4.1.9131.zip austin(a)aw25 ~ $ sha1sum VisereSetup_4.1.9131.zip 1ffb7d112cbf55d30b31991c0ed7541fd4602eeb VisereSetup_4.1.9131.zip austin(a)aw25 ~ $ du -h VisereSetup_4.1.9131.zip 4.2M VisereSetup_4.1.9131.zip works now. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14775 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #13 from Alexandre Julliard <julliard(a)winehq.org> 2013-01-18 14:57:23 CST --- Closing bugs fixed in 1.5.22. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
participants (1)
-
wine-bugs@winehq.org