gt0475b - 2006-10-18

Hi bookaa,

First of all, this is a great tool!

I could decomiple the sample petest.exe smoothly. But when I load a dll file and try to "Optim" it, it raised the error like:

"Unhandled exception at 0x102160f2 (msvcr71d.dll) in exe2c_gui.exe: 0xC0000005: Access violation reading location 0x00000000."

So open the source files to debug, the cause is on the cfuncstep1.cpp Line: 169.

The error is like,

---------------------------
Microsoft Visual C++ Runtime Library
---------------------------
Assertion failed!

Program: ...iler.Net\exetoc_src_20050524\Bin\exe2c_gui.exe
File: c:\documents and settings\gt0475b\my...\cfuncstep1.cpp
Line: 169

Expression: ea < 0x10000000

For information on how your program can cause an assertion
failure, see the Visual C++ documentation on asserts

(Press Retry to debug the application - JIT must be enabled)
---------------------------
Abort   Retry   Ignore  
---------------------------

the lines are,
    ...
    ea_t ea = head_off;
    assert(ea < 0x10000000);
    ...

while head_off = 770767055 to cause the problem.

Could you check this? Thanks.