georg Wed Apr 20 09:24:09 2005 EDT
Modified files:
/php-src/ext/mysqli mysqli_api.c
Log:
another fix for last commit (committed from wrong tree) :(
http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli_api.c?r1=1.105&r2=1.106&ty=u
Index: php-src/ext/mysqli/mysqli_api.c
diff -u php-src/ext/mysqli/mysqli_api.c:1.105
php-src/ext/mysqli/mysqli_api.c:1.106
--- php-src/ext/mysqli/mysqli_api.c:1.105 Wed Apr 20 08:50:13 2005
+++ php-src/ext/mysqli/mysqli_api.c Wed Apr 20 09:24:08 2005
@@ -15,7 +15,7 @@
| Author: Georg Richter <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
- $Id: mysqli_api.c,v 1.105 2005/04/20 12:50:13 georg Exp $
+ $Id: mysqli_api.c,v 1.106 2005/04/20 13:24:08 georg Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -610,7 +610,7 @@
#ifdef MYSQL_DATA_TRUNCATED
if (!ret || ret == MYSQL_DATA_TRUNCATED) {
#else
- if (!ret || ret == MYSQL_DATA_TRUNCATED) {
+ if (!ret) {
#endif
for (i = 0; i < stmt->result.var_cnt; i++) {
if (stmt->result.vars[i]->type == IS_STRING &&
stmt->result.vars[i]->value.str.len) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php