From: Georg Richter Date: Wed, 20 Apr 2005 13:24:08 +0000 (+0000) Subject: another fix for last commit (committed from wrong tree) :( X-Git-Tag: php-5.0.1b1~463 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2bcae57b312f84037719516e5ee40ec9b5ebd539;p=php another fix for last commit (committed from wrong tree) :( --- diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index cf58e61044..d5735d40da 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -610,7 +610,7 @@ PHP_FUNCTION(mysqli_stmt_fetch) #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) {