From 2bcae57b312f84037719516e5ee40ec9b5ebd539 Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Wed, 20 Apr 2005 13:24:08 +0000 Subject: [PATCH] another fix for last commit (committed from wrong tree) :( --- ext/mysqli/mysqli_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.40.0