1
1

need a terminating character in the decoded string

This commit was SVN r25355.
Этот коммит содержится в:
Nathan Hjelm 2011-10-21 16:46:28 +00:00
родитель fb19f56965
Коммит 7b1172b346

Просмотреть файл

@ -653,7 +653,7 @@ static void* pmi_decode(size_t *retlen) {
size_t i;
*retlen = strlen(pmi_attr_val)/2;
ret = malloc(*retlen);
ret = calloc(1, *retlen + 1);
if (NULL == ret) {
return ret;
}