From: Felipe Pena Date: Thu, 10 Jul 2008 17:50:51 +0000 (+0000) Subject: - MFB: Fixed bug #45460 (imap patch for fromlength fix in imap_headerinfo doesn't... X-Git-Tag: php-5.3.0alpha1~409 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b82c9b946123c7279dccce97dc04f864b444e17f;p=php - MFB: Fixed bug #45460 (imap patch for fromlength fix in imap_headerinfo doesn't accept lengths of 1024) --- diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index e377eb27a8..c09d7e8380 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -1977,16 +1977,16 @@ PHP_FUNCTION(imap_headerinfo) ZEND_FETCH_RESOURCE(imap_le_struct, pils *, &streamind, -1, "imap", le_imap); if (argc >= 3) { - if (fromlength < 0 || fromlength >= MAILTMPLEN) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "From length has to be between 1 and %i", MAILTMPLEN); + if (fromlength < 0 || fromlength > MAILTMPLEN) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, "From length has to be between 0 and %d", MAILTMPLEN); RETURN_FALSE; } } else { fromlength = 0x00; } if (argc >= 4) { - if (subjectlength < 0 || subjectlength >= MAILTMPLEN) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Subject length has to be between 1 and %i", MAILTMPLEN); + if (subjectlength < 0 || subjectlength > MAILTMPLEN) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Subject length has to be between 0 and %d", MAILTMPLEN); RETURN_FALSE; } } else {