[PHP-CVS-DAILY] cvs: php-src / ChangeLog

2007-02-04 Thread changelog
changelog   Mon Feb  5 01:31:03 2007 UTC

  Modified files:  
/php-srcChangeLog 
  Log:
  ChangeLog update
  
http://cvs.php.net/viewvc.cgi/php-src/ChangeLog?r1=1.2591r2=1.2592diff_format=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.2591 php-src/ChangeLog:1.2592
--- php-src/ChangeLog:1.2591Sun Feb  4 01:31:12 2007
+++ php-src/ChangeLog   Mon Feb  5 01:31:02 2007
@@ -1,3 +1,32 @@
+2007-02-04  Frank M. Kromann  [EMAIL PROTECTED]
+
+* ext/mssql/php_mssql.c:
+  MFB: #39213
+  Fix for '' returned as ' '.
+  This only works with FreeTDS as microsofts library returns a length of 1
+  for an empty string!
+
+* (PHP_5_2)
+  ext/mssql/php_mssql.c:
+  Fix for '' returned as ' '.
+  This only works with FreeTDS as microsofts library returns a length of 1
+  for an empty string!
+
+2007-02-04  Ilia Alshanetsky  [EMAIL PROTECTED]
+
+* ext/standard/http.c:
+  
+  Added a double free check.
+
+2007-02-04  Frank M. Kromann  [EMAIL PROTECTED]
+
+* ext/mbstring/config.w32:
+  MFB: Fix win32 build
+
+* (PHP_5_2)
+  ext/mbstring/config.w32:
+  Fix win32 build
+
 2007-02-03  Marcus Boerger  [EMAIL PROTECTED]
 
 * (PHP_5_2)


[PHP-CVS] cvs: php-src /ext/mssql php_mssql.c

2007-02-04 Thread Frank M. Kromann
fmk Sun Feb  4 21:24:28 2007 UTC

  Modified files:  
/php-src/ext/mssql  php_mssql.c 
  Log:
  MFB: #39213
  Fix for '' returned as ' '.
  This only works with FreeTDS as microsofts library returns a length of 1 for 
an empty string!
  
http://cvs.php.net/viewvc.cgi/php-src/ext/mssql/php_mssql.c?r1=1.167r2=1.168diff_format=u
Index: php-src/ext/mssql/php_mssql.c
diff -u php-src/ext/mssql/php_mssql.c:1.167 php-src/ext/mssql/php_mssql.c:1.168
--- php-src/ext/mssql/php_mssql.c:1.167 Mon Jan  1 09:29:25 2007
+++ php-src/ext/mssql/php_mssql.c   Sun Feb  4 21:24:28 2007
@@ -16,7 +16,7 @@
+--+
  */
 
-/* $Id: php_mssql.c,v 1.167 2007/01/01 09:29:25 sebastian Exp $ */
+/* $Id: php_mssql.c,v 1.168 2007/02/04 21:24:28 fmk Exp $ */
 
 #ifdef COMPILE_DL_MSSQL
 #define HAVE_MSSQL 1
@@ -821,7 +821,7 @@
 
 static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int 
offset,zval *result, int column_type  TSRMLS_DC)
 {
-   if (dbdatlen(mssql_ptr-link,offset) == 0) {
+   if (dbdata(mssql_ptr-link,offset) == NULL  
dbdatlen(mssql_ptr-link,offset) == 0) {
ZVAL_NULL(result);
return;
}

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src(PHP_5_2) /main/streams php_stream_transport.h

2007-02-04 Thread Andi Gutmans
andiMon Feb  5 05:15:16 2007 UTC

  Modified files:  (Branch: PHP_5_2)
/php-src/main/streams   php_stream_transport.h 
  Log:
  - Make sure to be ANSI C compliant
  
  
http://cvs.php.net/viewvc.cgi/php-src/main/streams/php_stream_transport.h?r1=1.10.2.1.2.3r2=1.10.2.1.2.4diff_format=u
Index: php-src/main/streams/php_stream_transport.h
diff -u php-src/main/streams/php_stream_transport.h:1.10.2.1.2.3 
php-src/main/streams/php_stream_transport.h:1.10.2.1.2.4
--- php-src/main/streams/php_stream_transport.h:1.10.2.1.2.3Thu Jan 18 
16:05:48 2007
+++ php-src/main/streams/php_stream_transport.h Mon Feb  5 05:15:16 2007
@@ -16,7 +16,7 @@
   +--+
 */
 
-/* $Id: php_stream_transport.h,v 1.10.2.1.2.3 2007/01/18 16:05:48 nlopess Exp 
$ */
+/* $Id: php_stream_transport.h,v 1.10.2.1.2.4 2007/02/05 05:15:16 andi Exp $ */
 
 #if HAVE_SYS_SOCKET_H
 # include sys/socket.h
@@ -133,7 +133,7 @@
unsigned int want_addr:1;
unsigned int want_textaddr:1;
unsigned int want_errortext:1;
-   stream_shutdown_t how:2;
+   unsigned int how:2;
 
struct {
char *name;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /main/streams php_stream_transport.h

2007-02-04 Thread Andi Gutmans
andiMon Feb  5 05:15:49 2007 UTC

  Modified files:  
/php-src/main/streams   php_stream_transport.h 
  Log:
  - Make sure to be ANSI C compliant
  
  
http://cvs.php.net/viewvc.cgi/php-src/main/streams/php_stream_transport.h?r1=1.14r2=1.15diff_format=u
Index: php-src/main/streams/php_stream_transport.h
diff -u php-src/main/streams/php_stream_transport.h:1.14 
php-src/main/streams/php_stream_transport.h:1.15
--- php-src/main/streams/php_stream_transport.h:1.14Thu Jan 18 16:06:28 2007
+++ php-src/main/streams/php_stream_transport.h Mon Feb  5 05:15:49 2007
@@ -16,7 +16,7 @@
   +--+
 */
 
-/* $Id: php_stream_transport.h,v 1.14 2007/01/18 16:06:28 nlopess Exp $ */
+/* $Id: php_stream_transport.h,v 1.15 2007/02/05 05:15:49 andi Exp $ */
 
 #if HAVE_SYS_SOCKET_H
 # include sys/socket.h
@@ -133,7 +133,7 @@
unsigned int want_addr:1;
unsigned int want_textaddr:1;
unsigned int want_errortext:1;
-   stream_shutdown_t how:2;
+   unsigned int how:2;
 
struct {
char *name;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php