summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-04-11 02:40:28 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-04-11 02:40:28 +0000
commit22e0811f2c7a5a91c1e6a54d75f11cf9a36aaf2c (patch)
treed0d60ba844cf017bb8b8e147efa2a1c1e79e1f13 /ext
parentd7a3529eade4a4206f0c876f7bb7398d6a4e6d51 (diff)
downloadphp-git-22e0811f2c7a5a91c1e6a54d75f11cf9a36aaf2c.tar.gz
MFH
Diffstat (limited to 'ext')
-rw-r--r--ext/mhash/mhash.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/mhash/mhash.c b/ext/mhash/mhash.c
index 12b135b5e4..7be388bd16 100644
--- a/ext/mhash/mhash.c
+++ b/ext/mhash/mhash.c
@@ -203,6 +203,10 @@ PHP_FUNCTION(mhash_keygen_s2k)
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lssl", &hash, &password, &password_len, &in_salt, &salt_len, &bytes) == FAILURE) {
WRONG_PARAM_COUNT;
}
+ if (bytes <= 0){
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "the byte parameter must be greater then 0");
+ RETURN_FALSE;
+ }
salt_len = MIN(salt_len, SALT_SIZE);