tests: Free WNM allocations cleanly in wnm-fuzzer
Avoid a memory leak in fuzzer tests by calling wnm_deallocate_memory() before exiting since this fuzzing wrapper does not use full wpa_supplicant_cleanup(). Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
358141344a
commit
2dfe2ad6cb
1 changed files with 7 additions and 0 deletions
|
@ -68,6 +68,12 @@ static int init_wpa(struct arg_ctx *ctx)
|
|||
}
|
||||
|
||||
|
||||
static void deinit_wpa(struct arg_ctx *ctx)
|
||||
{
|
||||
wnm_deallocate_memory(&ctx->wpa_s);
|
||||
}
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
struct arg_ctx ctx;
|
||||
|
@ -99,6 +105,7 @@ int main(int argc, char *argv[])
|
|||
wpa_printf(MSG_DEBUG, "Starting eloop");
|
||||
eloop_run();
|
||||
wpa_printf(MSG_DEBUG, "eloop done");
|
||||
deinit_wpa(&ctx);
|
||||
|
||||
ret = 0;
|
||||
fail:
|
||||
|
|
Loading…
Reference in a new issue