fix buffer overflow

This commit is contained in:
Vitor Santos Costa 2012-10-16 08:41:15 +01:00
parent bb71204a11
commit fcb59e5c74
1 changed files with 2 additions and 2 deletions

View File

@ -471,7 +471,7 @@ init_tout(PL_chars_t *t, size_t len)
{ t->text.t = t->buf;
t->storage = PL_CHARS_LOCAL;
} else
{ t->text.t = PL_malloc(len);
{ t->text.t = PL_malloc(len+1);
t->storage = PL_CHARS_MALLOC;
}
succeed;
@ -480,7 +480,7 @@ init_tout(PL_chars_t *t, size_t len)
{ t->text.w = (pl_wchar_t*)t->buf;
t->storage = PL_CHARS_LOCAL;
} else
{ t->text.w = PL_malloc(len*sizeof(pl_wchar_t));
{ t->text.w = PL_malloc((len+1)*sizeof(pl_wchar_t));
t->storage = PL_CHARS_MALLOC;
}
succeed;