mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-29 02:38:22 -05:00
WPS UDF: Fix fd leak on error path
Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
c7803a0294
commit
19991e5fb2
@ -159,8 +159,10 @@ static void * init_ufd(struct wps_context *wps,
|
||||
}
|
||||
|
||||
data = os_zalloc(sizeof(*data));
|
||||
if (data == NULL)
|
||||
if (data == NULL) {
|
||||
close(ufd_fd);
|
||||
return NULL;
|
||||
}
|
||||
data->ufd_fd = ufd_fd;
|
||||
return data;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user