Commit:    baac810eb8244de87944ab76b1f466d0d6ec4304
Author:    Yasuo Ohgaki <yohg...@php.net>         Tue, 9 Jul 2013 14:51:44 +0900
Parents:   84e6576203fdf5b4db798e17f633a923b4e86807
Branches:  master

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

Log:
Improve pg_unescape_bytea() error message

Changed paths:
  M  ext/pgsql/pgsql.c


Diff:
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 1c78fff..128c289 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -4212,7 +4212,7 @@ PHP_FUNCTION(pg_unescape_bytea)
        to = (char *)php_pgsql_unescape_bytea((unsigned char*)from, &to_len);
 #endif
        if (!to) {
-               php_error_docref(NULL TSRMLS_CC, E_WARNING,"Failed to 
unescape");
+               php_error_docref(NULL TSRMLS_CC, E_WARNING,"Invalid parameter");
                RETURN_FALSE;
        }
        RETVAL_STRINGL(to, to_len, 0);


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

Reply via email to