Displaying 1 result from an estimated 1 matches for "807c175".
Did you mean:
807c173
2006 Jun 27
1
iconv.c / static charset prototype/assembler bug?
...config.h, everything works as
expected:
NT_STATUS charset_CP850_init(void);
You may look at this disassembly which shows whats going wrong exactely:
iconv.c: smb_iconv_open(): (With the NT_STATUS charset_CP850_init(void);
prototype:)
807c173: 85 c0 test %eax,%eax
807c175: 75 e9 jne 807c160
<smb_iconv_open+0x3a>
807c177: 8d 45 ec lea 0xffffffec(%ebp),%eax
807c17a: 83 ec 0c sub $0xc,%esp
807c17d: 50 push %eax // here gcc reserves
space on the stack
807c...