From: RĂ©mi Denis-Courmont Date: Sat, 15 May 2010 08:52:52 +0000 (+0300) Subject: Use setenv(), safer and cleaner than putenv() X-Git-Tag: 1.2.0-pre1~6656 X-Git-Url: https://git.sesse.net/?p=vlc;a=commitdiff_plain;h=61f8e439fdaf29c2489ef4511f4fa2d17a38d1e6 Use setenv(), safer and cleaner than putenv() --- diff --git a/bin/vlc.c b/bin/vlc.c index 034f0cae45..0f7218e632 100644 --- a/bin/vlc.c +++ b/bin/vlc.c @@ -69,20 +69,19 @@ int main( int i_argc, const char *ppsz_argv[] ) * LibVLC runs outside of VLC, we cannot rely on this code snippet. */ signal (SIGPIPE, SIG_IGN); -#ifdef HAVE_PUTENV +#ifdef HAVE_SETENV # ifndef NDEBUG /* Activate malloc checking routines to detect heap corruptions. */ - putenv( (char*)"MALLOC_CHECK_=2" ); + setenv ("MALLOC_CHECK_", "2", 1); /* Disable the ugly Gnome crash dialog so that we properly segfault */ - putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" ); + setenv ("GNOME_DISABLE_CRASH_DIALOG", "1", 1); # endif /* Make Xlib hide visuals with an alphachannel. Ensure that Qt4 will not * use the alpha channel for the embedded video window. */ - putenv( (char *)"XLIB_SKIP_ARGB_VISUALS=1" ); -#endif -#ifdef HAVE_SETENV + setenv ("XLIB_SKIP_ARGB_VISUALS", "1", 1); + /* Clear the X.Org startup notification ID. Otherwise the UI might try to * change the environment while the process is multi-threaded. That could * crash. Screw you X.Org. Next time write a thread-safe specification. */