Fix memleak in nuv demuxer: free packet already allocated packet when
returning an error in nuv_packet. Originally committed as revision 18385 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7a709548a7
commit
ef12ec23fa
@ -226,7 +226,10 @@ static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
|
|||||||
pkt->stream_index = ctx->v_id;
|
pkt->stream_index = ctx->v_id;
|
||||||
memcpy(pkt->data, hdr, copyhdrsize);
|
memcpy(pkt->data, hdr, copyhdrsize);
|
||||||
ret = get_buffer(pb, pkt->data + copyhdrsize, size);
|
ret = get_buffer(pb, pkt->data + copyhdrsize, size);
|
||||||
if (ret < 0) return ret;
|
if (ret < 0) {
|
||||||
|
av_free_packet(pkt);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
if (ret < size)
|
if (ret < size)
|
||||||
av_shrink_packet(pkt, copyhdrsize + ret);
|
av_shrink_packet(pkt, copyhdrsize + ret);
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user