From: Christophe Jaillet Date: Fri, 7 Jun 2013 04:41:45 +0000 (+0000) Subject: Fix commit 1465115. X-Git-Tag: 2.5.0-alpha~5366 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=099561a7e1a22e5a80292a3e90dd639969f48a82;p=apache 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 --- 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 */