]> git.sesse.net Git - vlc/commitdiff
Win32: fix NULL-deref in non embedded video mode (fixes #2426)
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 1 Feb 2009 07:09:22 +0000 (09:09 +0200)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 1 Feb 2009 07:09:22 +0000 (09:09 +0200)
modules/video_output/msw/events.c

index 221e4dd06a0ace106f83b1289c18f1cbeb58094d..119680c6f75f0198f0618f09800cddbe75644823 100644 (file)
@@ -422,7 +422,8 @@ static int DirectXCreateWindow( vout_thread_t *p_vout )
                             &p_vout->p_sys->i_window_y,
                             &p_vout->p_sys->i_window_width,
                             &p_vout->p_sys->i_window_height );
-    p_vout->p_sys->hparent = p_vout->p_sys->parent_window->handle.hwnd;
+    if( p_vout->p_sys->parent_window )
+        p_vout->p_sys->hparent = p_vout->p_sys->parent_window->handle.hwnd;
 
     /* We create the window ourself, there is no previous window proc. */
     p_vout->p_sys->pf_wndproc = NULL;