vlc/vlc-2.2 | branch: master | Hannes Domani <[email protected]> | Mon Aug 11 20:49:31 2014 +0200| [52ceccfe05f98bf9317488983e7abc22594b357b] | committer: Jean-Baptiste Kempf
Win32: stop stacktrace on nullpointer Signed-off-by: Jean-Baptiste Kempf <[email protected]> (cherry picked from commit a2897b56dc6e8c1bb4e1e705e6a6df97574c01a6) Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=52ceccfe05f98bf9317488983e7abc22594b357b --- bin/winvlc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/winvlc.c b/bin/winvlc.c index d44773d..2de6482 100644 --- a/bin/winvlc.c +++ b/bin/winvlc.c @@ -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, _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
