diff options
author | Pierre Joye <pajoye@php.net> | 2008-08-10 21:42:48 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-08-10 21:42:48 +0000 |
commit | 1804a397e6c8cf99b4f7f5dacfcd3a83193084ab (patch) | |
tree | a1929a163d83734a3bcf57b1eb74217bba44240c /ext/standard/php_crypt_r.c | |
parent | 9b14a298a10987f1ba62d457aa262b1e7a110415 (diff) | |
download | php-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.c | 2 |
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; |