diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-01 09:29:49 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-01 09:29:49 +0000 |
commit | 99a4dbf75cc3f7a40354b6c6596f4ea7aa373c52 (patch) | |
tree | 806a86599b236768bb1742f16d88053d5418d931 /src/xine-engine/video_out.c | |
parent | fa19bf6548378144d233d9cd3b898b98c97f3748 (diff) | |
download | xine-lib-99a4dbf75cc3f7a40354b6c6596f4ea7aa373c52.tar.gz xine-lib-99a4dbf75cc3f7a40354b6c6596f4ea7aa373c52.tar.bz2 |
memleak fixes from ewald snel
CVS patchset: 1535
CVS date: 2002/03/01 09:29:49
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r-- | src/xine-engine/video_out.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 7f8c6fbe7..ee61adc8e 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out.c,v 1.77 2002/02/18 17:30:40 guenter Exp $ + * $Id: video_out.c,v 1.78 2002/03/01 09:29:50 guenter Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -862,6 +862,11 @@ static void vo_exit (vo_instance_t *this_gen) { #ifdef LOG printf ("video_out: vo_exit... done\n"); #endif + + free (this->free_img_buf_queue); + free (this->display_img_buf_queue); + free (this->logo_yuy2); + free (this); } static vo_frame_t *vo_get_last_frame (vo_instance_t *this_gen) { |