summaryrefslogtreecommitdiff
path: root/ext/standard/php_crypt_r.c
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2008-08-10 21:42:48 +0000
committerPierre Joye <pajoye@php.net>2008-08-10 21:42:48 +0000
commit1804a397e6c8cf99b4f7f5dacfcd3a83193084ab (patch)
treea1929a163d83734a3bcf57b1eb74217bba44240c /ext/standard/php_crypt_r.c
parent9b14a298a10987f1ba62d457aa262b1e7a110415 (diff)
downloadphp-git-1804a397e6c8cf99b4f7f5dacfcd3a83193084ab.tar.gz
- debugbreak may not be desired (harmless in release mode :)
Diffstat (limited to 'ext/standard/php_crypt_r.c')
-rw-r--r--ext/standard/php_crypt_r.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_crypt_r.c b/ext/standard/php_crypt_r.c
index 706a83d3c5..6f8f6d7a80 100644
--- a/ext/standard/php_crypt_r.c
+++ b/ext/standard/php_crypt_r.c
@@ -203,7 +203,7 @@ char * php_md5_crypt_r(const char *pw, const char *salt, char *out) {
}
memcpy(passwd, MD5_MAGIC, MD5_MAGIC_LEN);
-DebugBreak();
+
#if _MSC_VER >= 1500
if (strncpy_s(passwd + MD5_MAGIC_LEN, MD5_HASH_MAX_LEN - MD5_MAGIC_LEN, sp, sl + 1) != 0) {
goto _destroyCtx1;