Fix potential memory leak in error situation in recent new code.

This commit is contained in:
Philip.Hazel 2020-10-06 08:04:40 +00:00
parent deffc391ce
commit fff544a1e9
1 changed files with 4 additions and 2 deletions

View File

@ -2390,8 +2390,10 @@ while (length > 0)
}
break;
default: /* Should not occur */
case DDE_ERROR:
default: /* Even though this should not occur, the string having */
case DDE_ERROR: /* been checked above, we need to include the free() */
free(args); /* calls so that source checkers do not complain. */
free(argsvector);
return 0;
}