From: Rasmus Lerdorf Date: Sun, 7 Aug 2011 15:38:36 +0000 (+0000) Subject: Make static analyzers happy X-Git-Tag: php-5.3.7RC5~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bcf8485ef5efa882b951d6f5f8ce28edd4399c57;p=php Make static analyzers happy --- diff --git a/ext/standard/php_crypt_r.c b/ext/standard/php_crypt_r.c index d59b248958..e0d72448c2 100644 --- a/ext/standard/php_crypt_r.c +++ b/ext/standard/php_crypt_r.c @@ -382,7 +382,7 @@ char * php_md5_crypt_r(const char *pw, const char *salt, char *out) /* Now make the output string */ memcpy(passwd, MD5_MAGIC, MD5_MAGIC_LEN); strlcpy(passwd + MD5_MAGIC_LEN, sp, sl + 1); - strcat(passwd, "$"); + strncat(passwd, "$", 1); PHP_MD5Final(final, &ctx);