> No crash
> Assertion: Unknown assertion type 0x00000000
Breakpad is picking up on some other type of assertion and
terminating, it's apparently not getting to the actual null pointer
dereference.
> Thread 3
> 0 ntdll.dll + 0x470b4
> eip = 0x778d70b4 esp = 0x008cf660 ebp = 0x008cf69c ebx =
> 0x00000000
> esi = 0x0000000e edi = 0x00f8ddc8 eax = 0x00000000 ecx =
> 0x7ffdc000
> edx = 0x00000578 efl = 0x00000202
> Found by: given as instruction pointer in context
> 1 user32.dll + 0xa07b
> eip = 0x75dfa07c esp = 0x008cf6a4 ebp = 0x008cf6c0
> Found by: previous frame's frame pointer
> 2 crash_generation_app.exe!google_breakpad::AppendTextToEditBox
> [crash_generation_app.cc : 159 + 0xb]
> eip = 0x00f510eb esp = 0x008cf6c8 ebp = 0x008cf95c
> Found by: previous frame's frame pointer
Whatever's going on here is the culprit. You can get symbols for
ntdll.dll and user32.dll from the Microsoft symbol server (perhaps
using symchk.exe) and dump them with dump_syms to get useful function
names for those top two frames.
-Ted