summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/utils/ntlm_auth_diagnostics.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/ntlm_auth_diagnostics.c b/source3/utils/ntlm_auth_diagnostics.c
index 0178823801..3ee4acdd83 100644
--- a/source3/utils/ntlm_auth_diagnostics.c
+++ b/source3/utils/ntlm_auth_diagnostics.c
@@ -495,11 +495,11 @@ static bool test_plaintext(enum ntlm_break break_which)
nt_response.data[0]++;
break;
case NO_LM:
- SAFE_FREE(lm_response.data);
+ TALLOC_FREE(lm_response.data);
lm_response.length = 0;
break;
case NO_NT:
- SAFE_FREE(nt_response.data);
+ TALLOC_FREE(nt_response.data);
nt_response.length = 0;
break;
}