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
This commit is contained in:
Vitor Sessak 2008-05-24 20:39:26 +00:00
parent d7ff229718
commit 2255026d53
1 changed files with 1 additions and 1 deletions

View File

@ -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;