Check the return value of malloc().
Reviewed by: hselasky MFC after: 3 days
This commit is contained in:
parent
fa3fef1400
commit
de3f3adcdf
@ -457,6 +457,11 @@ usb_parse_configuration(struct usb_config_descriptor *config,
|
||||
|
||||
/* allocate memory for our configuration */
|
||||
ptr = malloc(a + b + c + d);
|
||||
if (ptr == NULL) {
|
||||
/* free config structure */
|
||||
free(ps.a.currcfg);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* "currifcw" must be first, hence this pointer is freed */
|
||||
ps.b.currifcw = (void *)(ptr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user