Fixes to Coverity tasks 72734, 72717, 72700

This commit is contained in:
VilhoRaatikka
2014-11-01 20:33:17 +02:00
parent 9ccbab1899
commit 10f8d0535a
2 changed files with 10 additions and 3 deletions

View File

@ -192,6 +192,7 @@ int i, cflags = REG_ICASE;
if (my_instance->match == NULL || my_instance->replace == NULL)
{
free(my_instance);
return NULL;
}
@ -386,6 +387,8 @@ regmatch_t match[10];
free(orig);
return NULL;
}
free(orig);
res_size = 2 * length;
result = (char *)malloc(res_size);
res_length = 0;