MFC r203459:
Plug two memory leaks in error case.
This commit is contained in:
parent
0500dff0e4
commit
6e064db94e
@ -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++));
|
||||
|
Loading…
x
Reference in New Issue
Block a user