mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 03:28:27 +00:00
avformat/smoothstreamingenc: fix memleak
Fixes CID1224285 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
37715b4594
commit
a53c5d454e
@ -155,9 +155,10 @@ static void get_private_data(OutputStream *os)
|
|||||||
return;
|
return;
|
||||||
os->private_str = av_mallocz(2*size + 1);
|
os->private_str = av_mallocz(2*size + 1);
|
||||||
if (!os->private_str)
|
if (!os->private_str)
|
||||||
return;
|
goto fail;
|
||||||
for (i = 0; i < size; i++)
|
for (i = 0; i < size; i++)
|
||||||
snprintf(&os->private_str[2*i], 3, "%02x", ptr[i]);
|
snprintf(&os->private_str[2*i], 3, "%02x", ptr[i]);
|
||||||
|
fail:
|
||||||
if (ptr != codec->extradata)
|
if (ptr != codec->extradata)
|
||||||
av_free(ptr);
|
av_free(ptr);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user