Commit 6352c6bb authored by Aurelien Jacobs's avatar Aurelien Jacobs

fix a memleak in av_metadata_set()

Originally committed as revision 17617 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 144ae29d
......@@ -68,8 +68,10 @@ int av_metadata_set(AVMetadata **pm, const char *key, const char *value)
m->elems[m->count].value= av_strdup(value);
m->count++;
}
if(!m->count)
if(!m->count) {
av_free(m->elems);
av_freep(pm);
}
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment