diff options
author | jstebbins <[email protected]> | 2008-09-15 15:01:08 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-15 15:01:08 +0000 |
commit | 34327d0c37880dcc2d4f332ce291a308ce767d8d (patch) | |
tree | b853df933250647a16e1af5a22b1e830bd3ceb37 /libhb/decmpeg2.c | |
parent | 357a1d943389cb3c76bf3a2c412b6e86bf646cf7 (diff) |
Fix a couple problem exposed through some valgrind testing. use of freed
memory in detelecine and use of uninitialized memory in decmpeg2
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1700 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decmpeg2.c')
-rw-r--r-- | libhb/decmpeg2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/decmpeg2.c b/libhb/decmpeg2.c index 4972d0468..4c8f5009b 100644 --- a/libhb/decmpeg2.c +++ b/libhb/decmpeg2.c @@ -420,6 +420,8 @@ static int decmpeg2Info( hb_work_object_t *w, hb_work_info_t *info ) { hb_work_private_t *pv = w->private_data; + memset( info, 0, sizeof(*info) ); + if ( pv && pv->libmpeg2 && pv->libmpeg2->info && pv->libmpeg2->info->sequence ) { hb_libmpeg2_t *m = pv->libmpeg2; |