Commit:    ef3d813d2c8758a915e4efb2e53752f8800eab52
Author:    Yasuo Ohgaki <yohg...@php.net>         Sat, 27 Jul 2013 05:46:11 
+0900
Parents:   8e79724c6fc4532ac31afc29713dd39867ee578f
Branches:  PHP-5.5

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=ef3d813d2c8758a915e4efb2e53752f8800eab52

Log:
Fixed bug #65336

Bugs:
https://bugs.php.net/65336

Changed paths:
  M  ext/pgsql/pgsql.c


Diff:
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 3a17b8c..de8bfc8 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


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to