Commit a53c5d45 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/smoothstreamingenc: fix memleak

Fixes CID1224285
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 37715b45
......@@ -155,9 +155,10 @@ static void get_private_data(OutputStream *os)
return;
os->private_str = av_mallocz(2*size + 1);
if (!os->private_str)
return;
goto fail;
for (i = 0; i < size; i++)
snprintf(&os->private_str[2*i], 3, "%02x", ptr[i]);
fail:
if (ptr != codec->extradata)
av_free(ptr);
}
......
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