php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #72324 imap_mailboxmsginfo() return wrong size
Submitted: 2016-06-03 08:50 UTC Modified: 2017-07-07 06:18 UTC
From: ronaldpoon at udomain dot com dot hk Assigned: kalle (profile)
Status: Closed Package: IMAP related
PHP Version: Irrelevant OS: Any
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: ronaldpoon at udomain dot com dot hk
New email:
PHP Version: OS:

 

 [2016-06-03 08:50 UTC] ronaldpoon at udomain dot com dot hk
Description:
------------
When mailbox or subfolder larger than 4G, the imap_mailboxmsginfo() will return wrong size. It is because the msize for accumulate the RFC822.SIZE overflow beyond 4G due to 32bit integer. By changing the unsigned int to unsigned long, the msize will be calculated correctly.

--- ext/imap/php_imap.c.orig    2016-06-03 16:39:44.387619879 +0800
+++ ext/imap/php_imap.c 2016-06-03 16:40:10.484287296 +0800
@@ -2601,7 +2601,7 @@ PHP_FUNCTION(imap_mailboxmsginfo)
        zval *streamind;
        pils *imap_le_struct;
        char date[100];
-       unsigned int msgno, unreadmsg, deletedmsg, msize;
+       unsigned long msgno, unreadmsg, deletedmsg, msize;
 
        if (zend_parse_parameters(ZEND_NUM_ARGS(), "r", &streamind) == FAILURE) {
                return;


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-08-20 00:36 UTC] kalle@php.net
-Status: Open +Status: Assigned -Assigned To: +Assigned To: kalle
 [2017-07-07 06:18 UTC] kalle@php.net
-Status: Assigned +Status: Closed
 [2017-07-07 06:18 UTC] kalle@php.net
The fix for this bug has been committed.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.

 For Windows:

http://windows.php.net/snapshots/
 
Thank you for the report, and for helping us make PHP better.


 [2017-07-07 06:19 UTC] kalle@php.net
Automatic comment on behalf of kalle
Revision: http://git.php.net/?p=php-src.git;a=commit;h=5a991ea49b1accf766e0044e10a3712fe0399a27
Log: Fixed bug #72324 (imap_mailboxmsginfo() return wrong size)
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 12:01:29 2024 UTC