From: Ilia Alshanetsky Date: Mon, 22 Dec 2003 15:56:51 +0000 (+0000) Subject: Missing bit for bug #26625. X-Git-Tag: php_ibase_before_split~542 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57b7eb9dc3670ba5e7b4b146dce15b3838d6a0f4;p=php Missing bit for bug #26625. --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index cc1093f31a..ff63d631af 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -3772,9 +3772,8 @@ PHP_PGSQL_API int php_pgsql_convert(PGconn *pg_link, const char *table_name, con if (Z_STRLEN_PP(val) == 0) { if (opt & PGSQL_CONV_FORCE_NULL) { ZVAL_STRING(new_val, "NULL", 1); - } - else { - ZVAL_STRING(new_val, empty_string, 1); + } else { + ZVAL_STRING(new_val, "''", 1); } } else {