http://bugs.winehq.org/show_bug.cgi?id=24886
Summary: TurboFTP: Fails to install Product: Wine Version: 1.3.5 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: lukasz.wojnilowicz@gmail.com
Steps to reproduce: 1) remove ~/.wine 2) wine tbftp.exe
Behaviour: Nothing.
Expected behaviour: At least something.
Terminal output: err:seh:setup_exception_record stack overflow 1176 bytes in thread 0009 eip 6834bc67 esp 00230e98 stack 0x230000-0x231000-0x330000
http://bugs.winehq.org/show_bug.cgi?id=24886
NSLW lukasz.wojnilowicz@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, Installer URL| |http://www.turboftp.com/dow | |nload/tbftp.exe
http://bugs.winehq.org/show_bug.cgi?id=24886
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |xerox_xerox2000@yahoo.co.uk Ever Confirmed|0 |1
--- Comment #1 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2010-10-25 12:07:38 CDT --- confirming. There's a (last) call before load of seh stuff showing up that looks bit strange to me: 0009:Call KERNEL32.VirtualAlloc(10000000,000f4000,00001000,00000004) ret=10042b0e 0009:Ret KERNEL32.VirtualAlloc() retval=10000000 ret=10042b0e
The hack below makes the installer start for me. I don't know much about memory allocation functions , maybe someone else could have a look
diff --git a/dlls/kernel32/virtual.c b/dlls/kernel32/virtual.c index dcd5b85..d19848c 100644 --- a/dlls/kernel32/virtual.c +++ b/dlls/kernel32/virtual.c @@ -65,7 +65,7 @@ static unsigned int page_size; * Failure: NULL. */ LPVOID WINAPI VirtualAlloc( LPVOID addr, SIZE_T size, DWORD type, DWORD protect ) -{ +{ if (addr>=0x10000000) return 0; return VirtualAllocEx( GetCurrentProcess(), addr, size, type, protect ); }
http://bugs.winehq.org/show_bug.cgi?id=24886
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |kernel32
http://bugs.winehq.org/show_bug.cgi?id=24886
--- Comment #2 from NSLW lukasz.wojnilowicz@gmail.com 2011-03-18 11:33:08 CDT --- Still issue in wine-1.3.15-446-g3cd88d2
http://bugs.winehq.org/show_bug.cgi?id=24886
--- Comment #3 from NSLW lukasz.wojnilowicz@gmail.com 2011-07-19 12:47:58 CDT --- Still issue in wine-1.3.24-216-gd385675
http://bugs.winehq.org/show_bug.cgi?id=24886
--- Comment #4 from NSLW lukasz.wojnilowicz@gmail.com 2012-02-12 08:55:48 CST --- Still issue in Wine 1.4-rc3
http://bugs.winehq.org/show_bug.cgi?id=24886
--- Comment #5 from NSLW lukasz.wojnilowicz@gmail.com 2012-10-18 09:30:22 CDT --- Still issue in wine-1.5.15-145-g29b3902
http://bugs.winehq.org/show_bug.cgi?id=24886
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic.delanoy@gmail.com
--- Comment #6 from Frédéric Delanoy frederic.delanoy@gmail.com 2013-07-07 09:55:45 CDT --- Still in wine-1.6-rc4-52-g9a0b434
http://bugs.winehq.org/show_bug.cgi?id=24886
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |focht@gmx.net Component|kernel32 |ntdll Resolution| |DUPLICATE
--- Comment #7 from Anastasius Focht focht@gmx.net 2013-07-07 11:26:36 CDT --- Hello folks,
dupe of bug 2770
--- snip --- ... 0027:Call KERNEL32.LoadLibraryExA(00409f80 "C:\users\focht\Temp\nsg353e.tmp\nsislichk.dll",00000000,00000008) ret=00401f92 ... 0027:Call PE DLL (proc=0x100779b5,module=0x10000000 L"nsislichk.dll",reason=PROCESS_ATTACH,res=(nil)) ... 0027:Call KERNEL32.VirtualAlloc(10000000,000f4000,00001000,00000004) ret=10042b0e 0027:Ret KERNEL32.VirtualAlloc() retval=10000000 ret=10042b0e 0027:trace:seh:raise_exception code=c0000005 flags=0 addr=0x1007a87d ip=1007a87d tid=0027 0027:trace:seh:raise_exception info[0]=00000000 0027:trace:seh:raise_exception info[1]=0f6630a8 0027:trace:seh:raise_exception eax=100dfd50 ebx=0054f020 ecx=000007ef edx=00000000 esi=005c88a0 edi=1007a880 0027:trace:seh:raise_exception ebp=0032f31c esp=0032f314 cs=0023 ds=002b es=002b fs=0063 gs=006b flags=00010206 ... --- snip ---
Regards
*** This bug has been marked as a duplicate of bug 2770 ***
http://bugs.winehq.org/show_bug.cgi?id=24886
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #8 from Austin English austinenglish@gmail.com 2013-07-09 18:53:53 CDT --- Closing.