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
(parent:
a41e9d6
)
Remove a redundant memset from libavformat.
author
Panagiotis Issaris
<takis.issaris@uhasselt.be>
Thu, 14 Sep 2006 12:04:07 +0000
(12:04 +0000)
committer
Panagiotis Issaris
<takis.issaris@uhasselt.be>
Thu, 14 Sep 2006 12:04:07 +0000
(12:04 +0000)
Originally committed as revision 6250 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/utils.c
patch
|
blob
|
history
diff --git
a/libavformat/utils.c
b/libavformat/utils.c
index
9bac8f8
..
b0171c0
100644
(file)
--- a/
libavformat/utils.c
+++ b/
libavformat/utils.c
@@
-494,7
+494,7
@@
void avformat_get_context_defaults(AVFormatContext *s){
AVFormatContext *av_alloc_format_context(void)
{
AVFormatContext *ic;
- ic = av_malloc
z
(sizeof(AVFormatContext));
+ ic = av_malloc(sizeof(AVFormatContext));
if (!ic) return ic;
avformat_get_context_defaults(ic);
ic->av_class = &av_format_context_class;