Parent Directory | Revision Log | Revision Graph
* Mon Dec 16 2013 Daniel Berteaud <daniel@firewall-services.com> - 5.3.3-14.sme - Resync with upstream php53, which include: - add security fix for CVE-2013-6420 - add security fix for CVE-2013-4248 - add upstream reproducer for error_handler (#951075) - add security fixes for CVE-2006-7243 - add security fixes for CVE-2012-2688, CVE-2012-0831, CVE-2011-1398, CVE-2013-1643 - fix segfault in error_handler with allow_call_time_pass_reference = Off (#951075) - fix double free when destroy_zend_class fails (#951076) - fix possible buffer overflow in pdo_odbc (#869694) - php script hangs when it exceeds max_execution_time when inside an ODBC call (#864954) - fix zend garbage collector (#892695) - fix transposed memset arguments in libzip (#953818) - fix possible segfault in pdo_mysql (#869693) - fix imap_open DISABLE_AUTHENTICATOR param ignores array (#859369) - fix stream support in fileinfo (#869697) - fix setDate when DateTime created from timestamp (#869691) - fix permission on source files (#869688) - add php(language) and missing provides (#837044) - - fix copy doesn't report failure on partial copy (#951413)
1 | vip-ire | 1.1 | diff -up php-5.3.3/ext/imap/php_imap.c.859371 php-5.3.3/ext/imap/php_imap.c |
2 | --- php-5.3.3/ext/imap/php_imap.c.859371 2012-10-09 10:25:27.695781670 +0200 | ||
3 | +++ php-5.3.3/ext/imap/php_imap.c 2012-10-09 10:25:52.887859821 +0200 | ||
4 | @@ -1190,7 +1190,7 @@ static void php_imap_do_open(INTERNAL_FU | ||
5 | if (zend_hash_index_find(Z_ARRVAL_PP(disabled_auth_method), i, (void **) &z_auth_method) == SUCCESS) { | ||
6 | if (Z_TYPE_PP(z_auth_method) == IS_STRING) { | ||
7 | if (Z_STRLEN_PP(z_auth_method) > 1) { | ||
8 | - mail_parameters (NIL, DISABLE_AUTHENTICATOR, (void *)Z_STRVAL_PP(disabled_auth_method)); | ||
9 | + mail_parameters (NIL, DISABLE_AUTHENTICATOR, (void *)Z_STRVAL_PP(z_auth_method)); | ||
10 | } | ||
11 | } else { | ||
12 | php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid argument, expect string or array of strings"); |
admin@koozali.org | ViewVC Help |
Powered by ViewVC 1.2.1 |