Commit 577320e5 authored by bcoudurier's avatar bcoudurier

free in case of multiple type == 2

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12263 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 93028144
......@@ -254,6 +254,7 @@ static int mov_read_dref(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
if (len&1)
len += 1;
if (type == 2) { // absolute path
av_free(dref->path);
dref->path = av_mallocz(len+1);
if (!dref->path)
return AVERROR(ENOMEM);
......
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