tony2001 Thu Oct 13 08:59:13 2005 EDT
Modified files: (Branch: PHP_5_0)
/php-src NEWS
/php-src/ext/interbase ibase_service.c
Log:
MFH: fix #34855 (ibase_service_attach() segfault on AMD64)
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.498&r2=1.1760.2.499&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.498 php-src/NEWS:1.1760.2.499
--- php-src/NEWS:1.1760.2.498 Tue Oct 11 09:51:29 2005
+++ php-src/NEWS Thu Oct 13 08:59:12 2005
@@ -2,6 +2,8 @@
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? ????, PHP 5.0.6
- Renamed CachingRecursiveIterator to RecursiveCachingIterator. (Marcus)
+- Fixed bug #34855 (ibase_service_attach() segfault on AMD64).
+ (irie at gmx dot de, Tony)
- Fixed bug #34810 (mysqli::init() and others use wrong $this pointer
without checks). (Tony)
- Fixed bug #34790 (preg_match_all(), named capturing groups, variable
http://cvs.php.net/diff.php/php-src/ext/interbase/ibase_service.c?r1=1.10&r2=1.10.2.1&ty=u
Index: php-src/ext/interbase/ibase_service.c
diff -u php-src/ext/interbase/ibase_service.c:1.10
php-src/ext/interbase/ibase_service.c:1.10.2.1
--- php-src/ext/interbase/ibase_service.c:1.10 Wed May 12 10:29:42 2004
+++ php-src/ext/interbase/ibase_service.c Thu Oct 13 08:59:13 2005
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: ibase_service.c,v 1.10 2004/05/12 14:29:42 abies Exp $ */
+/* $Id: ibase_service.c,v 1.10.2.1 2005/10/13 12:59:13 tony2001 Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -210,7 +210,7 @@
Connect to the service manager */
PHP_FUNCTION(ibase_service_attach)
{
- long hlen, ulen, plen, spb_len;
+ int hlen, ulen, plen, spb_len;
ibase_service *svm;
char buf[128], *host, *user, *pass, *loc;
isc_svc_handle handle = NULL;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php