From 099561a7e1a22e5a80292a3e90dd639969f48a82 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Fri, 7 Jun 2013 04:41:45 +0000 Subject: [PATCH] Fix commit 1465115. truncpw was allocated from a pool and not via malloc git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1490507 13f79535-47bb-0310-9956-ffa450edef68 --- support/passwd_common.c | 1 - 1 file changed, 1 deletion(-) diff --git a/support/passwd_common.c b/support/passwd_common.c index 92a40a8e04..2d438eef96 100644 --- a/support/passwd_common.c +++ b/support/passwd_common.c @@ -238,7 +238,6 @@ int mkhash(struct passwd_ctx *ctx) "characters by CRYPT algorithm." NL); } memset(truncpw, '\0', strlen(pw)); - free(truncpw); } break; #endif /* CRYPT_ALGO_SUPPORTED */ -- 2.49.0