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:
Jouni Malinen 2019-05-24 16:30:19 +03:00 committed by Jouni Malinen
parent 358141344a
commit 2dfe2ad6cb

View file

@ -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: