1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

smoothstreamingenc: Fix a memory leak on errors

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Michael Niedermayer
2014-07-06 05:02:38 +02:00
committed by Martin Storsjö
parent 246f869590
commit a863c97e99

View File

@@ -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);
}