diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-06-15 08:04:40 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-06-15 08:04:40 +0000 |
commit | c95cda1aa8d415ae357337257503372522a5734f (patch) | |
tree | 5f9b6959e10210a78f6935ca069ef0e32743443f /libvo | |
parent | 37ee8c83cbdb9b68b345ae8063cd50f7f84f64e2 (diff) |
Missing free for malloced char_seq in OSD code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18719 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/sub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libvo/sub.c b/libvo/sub.c index 2f2d664998..05b0901516 100644 --- a/libvo/sub.c +++ b/libvo/sub.c @@ -460,6 +460,7 @@ inline static void vo_update_text_sub(mp_osd_obj_t* obj,int dxs,int dys){ char_position = 0; xsize = -vo_font->charspace; } + free(char_seq); if (osl != NULL) { int value = 0, exit = 0, minimum = 0; |