tony2001                Thu Oct 13 08:58:48 2005 EDT

  Modified files:              (Branch: PHP_5_1)
    /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.2027.2.124&r2=1.2027.2.125&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.124 php-src/NEWS:1.2027.2.125
--- php-src/NEWS:1.2027.2.124   Thu Oct 13 06:02:58 2005
+++ php-src/NEWS        Thu Oct 13 08:58:42 2005
@@ -43,6 +43,8 @@
 - Fixed "make test" to work for phpized extensions. (Hartmut, Jani)
 - Fixed failing queries (FALSE returned) with mysqli_query() on 64 bit systems.
   (Andrey)
+- Fixed bug #34855 (ibase_service_attach() segfault on AMD64). 
+  (irie at gmx dot de, Tony)
 - Fixed bug #34850 (--program-suffix and --program-prefix not included in
   man page names). (Jani)
 - Fixed bug #34818 (several functions crash when invalid mysqli_link object 
http://cvs.php.net/diff.php/php-src/ext/interbase/ibase_service.c?r1=1.11&r2=1.11.2.1&ty=u
Index: php-src/ext/interbase/ibase_service.c
diff -u php-src/ext/interbase/ibase_service.c:1.11 
php-src/ext/interbase/ibase_service.c:1.11.2.1
--- php-src/ext/interbase/ibase_service.c:1.11  Wed Aug  3 10:07:19 2005
+++ php-src/ext/interbase/ibase_service.c       Thu Oct 13 08:58:48 2005
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: ibase_service.c,v 1.11 2005/08/03 14:07:19 sniper Exp $ */
+/* $Id: ibase_service.c,v 1.11.2.1 2005/10/13 12:58:48 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

Reply via email to