Commit 52ceccfe authored by Hannes Domani's avatar Hannes Domani Committed by Jean-Baptiste Kempf

Win32: stop stacktrace on nullpointer

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
(cherry picked from commit a2897b56dc6e8c1bb4e1e705e6a6df97574c01a6)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent a8fd9a2e
......@@ -354,6 +354,8 @@ LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo)
if( !caller )
break;
pBase = *pBase;
if( !pBase )
break;
}
HANDLE hpid = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ,
......
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