similar to: VirtualProtect and app crash: exception handling?

Displaying 20 results from an estimated 100 matches similar to: "VirtualProtect and app crash: exception handling?"

2001 Dec 08
1
LoadOEMResource crash [Was: Re: Problem report: SHRINKER.ERR, fix to DEVICE_Open/CreateFileA? ]
Hi Pavel, Right, my app also crashes in a different place under winedbg, although it crashes in the same winedbg place under gdb. I took a closer look at wine --winver nt40 --debugmsg +all. I found something interesting. If I search for queue_exception, I find that there is an exception raised before the LoadOEMCall, about 328klines in: 0806d398:Call
2001 Dec 12
0
App crashes and exception handling [Was: Re: VirtualProtect and app crash]
This is where that 0x761B10 address must have been coming from: 007605E2 sub_7605E2 proc near ; CODE XREF: start+88^Xp 007605E2 mov eax, large fs:0 007605E8 push ebp 007605E9 mov ebp, esp 007605EB push 0FFFFFFFFh 007605ED push 75A010h 007605F2 push 761B10h
2001 Dec 11
0
VirtualProtect and app crash: what's your interpretation?
Here is my thought process on why the application crashes with a protection violation reading a section of memory. I used IDA to disassemble the app. Here's the section where it reads from memory and crashes because of a protection violation: 00760D4A sub_760D4A proc near ; CODE XREF: sub_75FCB0+159^Xp 00760D4A push ebp 00760D4B mov
2001 Jun 27
1
err:ntdll:RtlpWaitForCriticalSection...
Hi there, I'm relativly new to this linux-stuff an especially to wine. I'm trying to bring up an software that is using the FOXW2600.ESL als runtime library (as far as i understand this). All i can get out of wine is a blank and black (managed) screen an a bunch of messages at starting konsole. At the end wine claims to be successful. I'm running SuSE 7.2 codeweavers-wine-20010305
2002 Jan 07
0
Unhandled exception: page fault on read access
Skipped content of type multipart/alternative-------------- next part -------------- wine --debugmsg +seh wlaunch.exe fixme:module:CreateProcessA (sciw.exe,...): NORMAL_PRIORITY_CLASS ignored fixme:ole:MSFT_DoTypeInfo Assign constructor/destructor memid <snip> repeated 52 times /<snip> fixme:font:AddFontResourceA ("C:\\WINDOWS\\Fonts\\reale___.ttf"): stub! Read the Wine
2005 Mar 21
1
Program Crashes on Startup
Hi, I'm trying to run a software package for viewing weather data under wine, but the program crashes with an unhandled exception before I can even see a window. The program is freely available (for educational and non-commercial use) here: http://sdg.ocs.ou.edu/builds/final/win/WeatherScope/WeatherScope-1.2.1.exe This is running with Wine 20050310. I've included the relevent
2001 Dec 02
1
Is it impossible to use Windows ME
Is it impossible to use Windows ME as the windows partition? The only application I can execute is ARACHNID.EXE I haved tried other simple like sol.exe, notepad.exe but it all fails If a start wine in debug mode it always end up in an endless loop and the debugger saying over and over again 0806d8b8:trace:seh:EXC_CallHandler calling handler at 0x400785d code=c0000005 flags=10
2002 Nov 14
0
WIN 3.1 App crashes.. Unhandled Exception
The program is Atwin.exe (Accuterm) and going back to the 3.1 version as it's reliance on Windows specific .dll's is better than recent versions... However, I get as far as the initial splash screen and nothing.. If I hit the enter key twice it continues running for a bit, and then hangs.. When I run a trace, I get the following: Can anyone see at a glance if this is a bug, or just a
2001 Dec 08
1
LoadOEMResource crash [Was: Re: Problem report: SHRINKER.ERR, fix to DEVICE_Open/CreateFileA? ]
Hooray, I got gdb to do what I need, to skip the first exception and break before the second. The key commands are: gdb (winepath)/bin/wine Set the arguments: > set args --winver nt40 yourapp Tell gdb to pass segmentation faults to the program: > handle SIGSEGV nostop pass Set a breakpoint at main: > b main Run the program: > run This loads all the shared libraries, and
2009 Jan 01
2
System Shock 2, setup crashes
Hi, the setup asks for the install size, i choose max, after hitting next i see: Code: wine setup.exe -lgntforce err:module:DelayLoadFailureHook failed to delay load rpcrt4.dll.I_RpcExceptionFilter wine: Call from 0x7ee1ba40 to unimplemented function rpcrt4.dll.I_RpcExceptionFilter, aborting wine: Unimplemented function rpcrt4.dll.I_RpcExceptionFilter called at address 0x7ee1ba40 (thread
2001 Oct 09
2
crash on priviledged instruction
Hello, is it possible to make a work around for the crash ? The crashing program is the installer of the T-Online software (CD from 29.04.1999). Tsch?? Stefan -------------- next part -------------- 08243b48:Call KERNEL.49: GETMODULEFILENAME(0x09c6,09c7:89da,0x0104) ret=060f:10ae ds=09c7 08243b48:Ret KERNEL.49: GETMODULEFILENAME() retval=0x000f ret=060f:10ae ds=09c7 08243b48:Call KERNEL.127:
2001 Dec 12
3
Bug in PE_LoadImage/map_image? [Was: VirtualProtect and app crash]
I used WinDbg to show the memory protections that were placed on the executable image just after it was loaded, and just before the app starts. Here is what wine shows: View: 0x400000 - 0x765fff 28 0x400000 - 0x765fff c-rw- Here is what WinDbg shows (manually edited to look like the wine view): 0x400000 - 0x400fff c-r-- (PAGE_READONLY) 0x401000 - 0x454fff c--W- (PAGE_WRITECOPY)
2001 Mar 13
3
problems running homesite
Hi there, I have just installed wine (release 20010305) and it looks to work good. I can run notepad without trouble, winecheck.pl has one bad and one critical result: 023. Checking device needed for DGA (option "UseDGA"): /dev/BAD (/dev/mem is not writable for you). - ADVICE: Use chmod as root to fix it ("man chmod"). 025. Checking availability of windows registry
2005 May 05
2
LockWindowUpdate
Hi, I've got a program that produces these error messages when started with wine. fixme:dc:LockWindowUpdate (0x10024), partial stub! fixme:dc:LockWindowUpdate ((nil)), partial stub! fixme:dc:LockWindowUpdate (0x10024), partial stub! fixme:dc:LockWindowUpdate ((nil)), partial stub! fixme:dc:LockWindowUpdate (0x10024), partial stub! fixme:dc:LockWindowUpdate ((nil)), partial stub! The program
2001 Dec 08
0
LoadOEMResource crash [Was: Re: Problem report: SHRINKER.ERR, fix to DEVICE_Open/CreateFileA? ]
Oh, I think I see now. There was a call to VIRTUAL_SetProt, which protected memory mapped regions of memory, before the first exception: 0806d398:trace:virtual:VIRTUAL_SetProt 0x459000-0x459fff c-r-- View: 0x400000 - 0x765fff 28 0x400000 - 0x400fff c-r-- 0x401000 - 0x458fff c---- 0x459000 - 0x459fff c-r-- 0x45a000 - 0x758fff c---- 0x759000 - 0x765fff c-rw- And
2004 Sep 15
0
[LLVMdev] Files to lib/System/Win32
On Wed, 15 Sep 2004 19:59:01 +0200 "Henrik Bach" <henrik_bach_llvm at hotmail.com> wrote: > >From: Jeff Cohen <jeffc at jolt-lang.org> > >Date: Wed, 15 Sep 2004 10:35:36 -0700 > > > > >What's a "compiling mesh?" > > What I meant, was that there are some implicit defines in mingw (like __GCC) > and vcX (like _MVC) but
2014 Mar 21
1
PATCH for cpu.c
Explanation of changes in this patch: 1) 'CALLBACK' was changed to 'WINAPI' because the signature of an unhandled exception filter is LONG (WINAPI *unhandled_func)(struct _EXCEPTION_POINTERS); 2) The code if(info->ia32.fxsr || info->ia32.sse || info->ia32.sse2) { [...] } was replaced by if(info->ia32.sse) { [...] } else
2001 Oct 04
4
wine wount do anything
Yello I use (or try to use :) wine 20010824 (installed from MDK rpm). If I try to run a app i get: #wine notepad.exe Warning: could not find wine config [Drive x] entry for current working directory /home/enrique/.wine; starting in windows directory. Loading required GL library /usr/X11R6/lib/libGL.so.1.2 And nothing more happens. My system conf: Linux Mandrake 8.0, kernel 2.4.8-24mdk, XFree
2009 Mar 29
4
A3 Mania on Wine
Hi, Has anyone successfully run A3 Mania on Wine? It is an MMORPG (http://www.a3mania.com). I have installed directX and some other things using winetricks. I wias getting errors with urlmon.dll and rpcrt4.dll and then a dump. I copied over the urlmon.dll and rpcrt4.dll files from my windows installation to the system32 folder of wine. My current dump is as follows. What should i do to fix
2015 Jan 23
0
Wine release 1.7.35
The Wine development release 1.7.35 is now available. What's new in this release (see below for details): - Beginnings of support for OpenGL core contexts. - Initial support for glyph placement in DirectWrite. - Some more WBEM objects. - Various bug fixes. The source is available from the following locations: http://prdownloads.sourceforge.net/wine/wine-1.7.35.tar.bz2