diff options
author | jstebbins <[email protected]> | 2011-07-19 17:36:12 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-07-19 17:36:12 +0000 |
commit | 244f212aa465806e34e9c4640afffbe2dccefc4a (patch) | |
tree | c88b83dabd6f233f87907f45678314c66f195b7f /libhb/common.h | |
parent | 4c30ccadee5199d8c9bd0a4c4d38b50216cac409 (diff) |
libhb: plug a few memory leaks
Noticed when debugging a memory corruption issue with valgrind
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4122 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h index 712960248..41463c135 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -624,7 +624,7 @@ struct hb_title_s int video_codec; /* worker object id of video codec */ uint32_t video_stream_type; /* stream type from source stream */ int video_codec_param; /* codec specific config */ - const char *video_codec_name; + char *video_codec_name; int video_bitrate; const char *container_name; int data_rate; |