Fix two memory leaks in error cases.
PR: 138378 Submitted by: Patroklos Argyroudis <argp@census-labs.com> Approved by: mlaier MFC after: 1 week
This commit is contained in:
parent
f1c892a33c
commit
f11ccc426a
@ -1809,15 +1809,20 @@ hfsc_class_modify(cl, rsc, fsc, usc)
|
||||
cl->cl_fsc == NULL) {
|
||||
fsc_tmp = malloc(sizeof(struct internal_sc),
|
||||
M_DEVBUF, M_WAITOK);
|
||||
if (fsc_tmp == NULL)
|
||||
if (fsc_tmp == NULL) {
|
||||
free(rsc_tmp);
|
||||
return (ENOMEM);
|
||||
}
|
||||
}
|
||||
if (usc != NULL && (usc->m1 != 0 || usc->m2 != 0) &&
|
||||
cl->cl_usc == NULL) {
|
||||
usc_tmp = malloc(sizeof(struct internal_sc),
|
||||
M_DEVBUF, M_WAITOK);
|
||||
if (usc_tmp == NULL)
|
||||
if (usc_tmp == NULL) {
|
||||
free(rsc_tmp);
|
||||
free(fsc_tmp);
|
||||
return (ENOMEM);
|
||||
}
|
||||
}
|
||||
|
||||
cur_time = read_machclk();
|
||||
|
Loading…
Reference in New Issue
Block a user