[vlc-commits] SDL vout: never override signals (rather than only in debug builds)

Rémi Denis-Courmont git at videolan.org
Mon Sep 5 23:01:24 CEST 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Sep  6 00:00:46 2011 +0300| [a99f2ab5cb75e0eb1fb99390f1db27f8db064f1e] | committer: Rémi Denis-Courmont

SDL vout: never override signals (rather than only in debug builds)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a99f2ab5cb75e0eb1fb99390f1db27f8db064f1e
---

 modules/video_output/sdl.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/modules/video_output/sdl.c b/modules/video_output/sdl.c
index 8bb08dc..e431b0a 100644
--- a/modules/video_output/sdl.c
+++ b/modules/video_output/sdl.c
@@ -142,10 +142,8 @@ static int Open(vlc_object_t *object)
     /* Win32 SDL implementation doesn't support SDL_INIT_EVENTTHREAD yet*/
     sdl_flags |= SDL_INIT_EVENTTHREAD;
 #endif
-#ifndef NDEBUG
     /* In debug mode you may want vlc to dump a core instead of staying stuck */
     sdl_flags |= SDL_INIT_NOPARACHUTE;
-#endif
 
     /* Initialize library */
     if (SDL_Init(sdl_flags) < 0) {



More information about the vlc-commits mailing list