http://bugs.winehq.org/show_bug.cgi?id=60018 --- Comment #8 from zlice <zlice@crtdrift.us> --- so after digging through wine and gstreamer for far too long. one crash is in dlls/ntdll/unix/debug.c : __wine_dbg_header() gets `struct debug_info *info = get_info();` then immediately tries to `char *pos = info->output;` --- but get_info() returns 'debug_info[0x800]' from thread data, which is 0x58, which clearly fails to deref. idk if that's a race from threads being deleted or something is overflowing into it. but the ending line `016c:fixme:kernelbase:AppPolicyGetProcessTerminationMethod FFFFFFFFFFFFFFFA, 00007FFFFE20FE80` does seem to be constant... i see easy way to disable or fprintf() before the wine macros though. trying to add a fprintf() in `__WINE_DPRINTF` or anything leads to linker failures for fprintf() - and there is no corresponding WINE_NO_ERROR for error, like there is for trace and debug/fixme. even if i could disable messages, that doesn't help see whats going on (unless it is a overflow and pushes a crash to somewhere else?) -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.