Commit 7e8f17ff authored by Pierre Ynard's avatar Pierre Ynard

Win32: fix encoding of crash dumps

parent 94348d6d
......@@ -295,7 +295,7 @@ LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo)
{
unsigned int i;
for( i = 0; i < pException->NumberParameters; i++ )
fprintf( fd, " | %08x", pException->ExceptionInformation[i] );
fwprintf( fd, L" | %08x", pException->ExceptionInformation[i] );
}
fwprintf( fd, L"\n\n[context]\nEDI:%08x\nESI:%08x\n" \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment