From: Yasuo Ohgaki Date: Fri, 26 Jul 2013 20:46:11 +0000 (+0900) Subject: Fixed bug #65336 X-Git-Tag: php-5.6.0alpha1~372 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d4aee1021e6a29f62dcb9c96e945a0fe710c8832;p=php Fixed bug #65336 --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 3a17b8c357..de8bfc880d 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -4295,12 +4295,13 @@ static void php_pgsql_escape_internal(INTERNAL_FUNCTION_PARAMETERS, int escape_l } if (pgsql_link == NULL && id == -1) { + php_error_docref(NULL TSRMLS_CC, E_WARNING,"Cannot get default pgsql link"); RETURN_FALSE; } ZEND_FETCH_RESOURCE2(pgsql, PGconn *, &pgsql_link, id, "PostgreSQL link", le_link, le_plink); if (pgsql == NULL) { - php_error_docref(NULL TSRMLS_CC, E_WARNING,"Cannot get default pgsql link"); + php_error_docref(NULL TSRMLS_CC, E_WARNING,"Cannot get pgsql link"); RETURN_FALSE; } #ifdef HAVE_PQESCAPELITERAL