WPS UDF: Fix fd leak on error path

Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2012-07-07 13:00:00 +03:00
parent c7803a0294
commit 19991e5fb2

View file

@ -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;
}