From 4479d1b0614ff86207a723103f68cce28f67d430 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 8 Mar 2006 08:22:42 +0000 Subject: [PATCH] r14033: Fix Coverity bug # 126 (This used to be commit bb6d678575faac050376607a5c778b8a10805061) --- source3/utils/ntlm_auth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index f99c9db35bf..ac532350446 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -698,6 +698,7 @@ static void manage_client_ntlmssp_request(enum stdio_helper_mode stdio_helper_mo } else if (NT_STATUS_IS_OK(nt_status)) { char *reply_base64 = base64_encode_data_blob(reply); x_fprintf(x_stdout, "AF %s\n", reply_base64); + SAFE_FREE(reply_base64); DEBUG(10, ("NTLMSSP OK!\n")); if (ntlmssp_state) ntlmssp_end(&ntlmssp_state); -- 2.34.1