forked from FFmpeg/FFmpeg
avformat/id3v2: Use av_freep() avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7696e429c7
commit
081913aec5
1 changed files with 4 additions and 4 deletions
|
@ -218,10 +218,10 @@ static int check_tag(AVIOContext *s, int offset, unsigned int len)
|
|||
static void free_geobtag(void *obj)
|
||||
{
|
||||
ID3v2ExtraMetaGEOB *geob = obj;
|
||||
av_free(geob->mime_type);
|
||||
av_free(geob->file_name);
|
||||
av_free(geob->description);
|
||||
av_free(geob->data);
|
||||
av_freep(&geob->mime_type);
|
||||
av_freep(&geob->file_name);
|
||||
av_freep(&geob->description);
|
||||
av_freep(&geob->data);
|
||||
av_free(geob);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue