git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
d32eed5
)
lavf: dealloc private options in av_write_trailer
author
Luca Barbato
<lu_zero@gentoo.org>
Mon, 12 Dec 2011 17:22:22 +0000
(18:22 +0100)
committer
Luca Barbato
<lu_zero@gentoo.org>
Tue, 13 Dec 2011 16:03:08 +0000
(17:03 +0100)
Fix the iformat/oformat typo.
libavformat/utils.c
patch
|
blob
|
history
diff --git
a/libavformat/utils.c
b/libavformat/utils.c
index
a078d9c
..
f424285
100644
(file)
--- a/
libavformat/utils.c
+++ b/
libavformat/utils.c
@@
-3261,7
+3261,7
@@
fail:
av_freep(&s->streams[i]->priv_data);
av_freep(&s->streams[i]->index_entries);
}
- if (s->
iformat && s->i
format->priv_class)
+ if (s->
o
format->priv_class)
av_opt_free(s->priv_data);
av_freep(&s->priv_data);
return ret;