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:
d7ff229
)
10l: Forgot to consider the null byte at the end of the string when alloc'ing
author
Vitor Sessak
<vitor1001@gmail.com>
Sat, 24 May 2008 20:39:26 +0000
(20:39 +0000)
committer
Vitor Sessak
<vitor1001@gmail.com>
Sat, 24 May 2008 20:39:26 +0000
(20:39 +0000)
Commited in SoC by Vitor Sessak on 2008-04-10 16:39:07
Originally committed as revision 13298 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavfilter/graphparser.c
patch
|
blob
|
history
diff --git
a/libavfilter/graphparser.c
b/libavfilter/graphparser.c
index
2007b62
..
26c9551
100644
(file)
--- a/
libavfilter/graphparser.c
+++ b/
libavfilter/graphparser.c
@@
-99,7
+99,7
@@
static void consume_whitespace(const char **buf)
*/
static char *consume_string(const char **buf)
{
- char *out = av_malloc(strlen(*buf));
+ char *out = av_malloc(strlen(*buf)
+ 1
);
const char *in = *buf;
char *ret = out;