Commit d395efc2 authored by Pierre Ynard's avatar Pierre Ynard

Win32: fix encoding of crash dumps

(cherry picked from commit 7e8f17ffa5918d1a177c103013e02f555407f3b2)
Signed-off-by: default avatarPierre Ynard <linkfanel@yahoo.fr>
parent 33004ba7
......@@ -308,7 +308,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