diff options
author | Felipe Pena <felipe@php.net> | 2009-01-07 18:26:27 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2009-01-07 18:26:27 +0000 |
commit | c0de7f3113ecf46a57d5d8d900f3a71fb44a197e (patch) | |
tree | 1d8e78e0fd7f5be266b04d71faae0652668c6eb8 /ext/imap/php_imap.c | |
parent | 90c059872d8e00118985c334f018ebbb0a8b2d36 (diff) | |
download | php-git-c0de7f3113ecf46a57d5d8d900f3a71fb44a197e.tar.gz |
- MFH: Fixed duplicate errmsg
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 5daeda3c2c..22170637e8 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -1212,7 +1212,7 @@ PHP_FUNCTION(imap_reopen) int argc = ZEND_NUM_ARGS(); if (zend_parse_parameters(argc TSRMLS_CC, "rs|ll", &streamind, &mailbox, &mailbox_len, &options, &retries) == FAILURE) { - ZEND_WRONG_PARAM_COUNT(); + return; } ZEND_FETCH_RESOURCE(imap_le_struct, pils *, &streamind, -1, "imap", le_imap); |