From: Alan T. DeKok Date: Sun, 24 May 2026 13:29:56 +0000 (-0400) Subject: free on error X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad3fcdceb6d565b4c8dc022fd1dc80c6306b153e;p=thirdparty%2Ffreeradius-server.git free on error --- diff --git a/src/fuzzer/fuzzer_xlat.c b/src/fuzzer/fuzzer_xlat.c index 0ca005614a9..e457dd1e061 100644 --- a/src/fuzzer/fuzzer_xlat.c +++ b/src/fuzzer/fuzzer_xlat.c @@ -75,6 +75,8 @@ int LLVMFuzzerInitialize(int *argc, char ***argv) if (fr_check_lib_magic(RADIUSD_MAGIC_NUMBER) < 0) { error: + talloc_free(dict_buf); + talloc_free(lib_buf); fr_perror("fuzzer_xlat"); return -1; }