|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-03-15 09:52 UTC] kalowsky@php.net
[2001-03-16 08:23 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 10:00:01 2025 UTC |
$subject says it all; this patch gets around this: --- ext/imap/php_imap.c~ Wed Mar 14 21:15:08 2001 +++ ext/imap/php_imap.c Thu Mar 15 09:20:09 2001 @@ -366,6 +366,7 @@ */ void mail_getquota(MAILSTREAM *stream, char *qroot,QUOTALIST *qlist) { + IMAPLS_FETCH(); /* this should only be run through once */ for (; qlist; qlist = qlist->next) { @@ -1021,7 +1022,8 @@ int ind, ind_type; pils *imap_le_struct; - + IMAPLS_FETCH(); + if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &streamind, &qroot) == FAILURE) { ZEND_WRONG_PARAM_COUNT(); }