1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

Do run exit handlers, fix a few leaks

This commit is contained in:
Rémi Denis-Courmont 2011-01-30 14:17:21 +02:00
parent 59491dcedf
commit 2bc307db6f

View File

@ -247,8 +247,5 @@ out:
for (int i = 1; i < argc; i++)
LocaleFree (argv[i]);
/* Do not run exit handlers. Some of them are buggy (e.g. KDE IO scheduler)
* and crash. Also some will crash because their library may be already
* unloaded (dlclose()). */
_exit (0);
return 0;
}