MFC r203459:

Plug two memory leaks in error case.
This commit is contained in:
Xin LI 2010-03-05 00:31:03 +00:00
parent 0500dff0e4
commit 6e064db94e
2 changed files with 5 additions and 2 deletions
sbin/dump

@ -106,8 +106,10 @@ readdumptimes(FILE *df)
for (;;) {
dtwalk = (struct dumptime *)calloc(1, sizeof (struct dumptime));
if (getrecord(df, &(dtwalk->dt_value)) < 0)
if (getrecord(df, &(dtwalk->dt_value)) < 0) {
free(dtwalk);
break;
}
nddates++;
SLIST_INSERT_HEAD(&dthead, dtwalk, dt_list);
}

@ -767,7 +767,8 @@ obsolete(int *argcp, char **argvp[])
if (flags) {
*p = '\0';
*nargv++ = flagsp;
}
} else
free(flagsp);
/* Copy remaining arguments. */
while ((*nargv++ = *argv++));