Commit 2255026d authored by Vitor Sessak's avatar Vitor Sessak

10l: Forgot to consider the null byte at the end of the string when alloc'ing

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
parent d7ff2297
......@@ -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;
......
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