# HG changeset patch # User iive # Date 1100532579 0 # Node ID 5d8f11a627aefc426858b86e443000b0e22a1131 # Parent d9bdae1d1c04d98415324d4106f2f79ee1bb8468 free freetype descriptor and library and mconfig data right before exit diff -r d9bdae1d1c04 -r 5d8f11a627ae mplayer.c --- a/mplayer.c Mon Nov 15 15:05:12 2004 +0000 +++ b/mplayer.c Mon Nov 15 15:29:39 2004 +0000 @@ -483,8 +483,18 @@ vo_uninit(); // close the X11 connection (if any opened) #endif +#ifdef HAVE_FREETYPE + current_module="uninit_font"; + if (vo_font) free_font_desc(vo_font); + vo_font = NULL; + done_freetype(); +#endif + current_module="exit_player"; +// free mplayer config + free(mconfig); + #ifdef USE_EDL if(edl_records != NULL) free(edl_records); // free mem allocated for EDL #endif @@ -4129,12 +4139,6 @@ goto play_next_file; } -#ifdef HAVE_FREETYPE -current_module="uninit_font"; -if (vo_font) free_font_desc(vo_font); -vo_font = NULL; -done_freetype(); -#endif exit_player_with_rc(MSGTR_Exit_eof, 0);