summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2013-07-09 14:51:44 +0900
committerYasuo Ohgaki <yohgaki@php.net>2013-07-09 14:54:03 +0900
commitbaac810eb8244de87944ab76b1f466d0d6ec4304 (patch)
tree7bd5669209e3b4822c887d7200fb986c9333d808
parent84e6576203fdf5b4db798e17f633a923b4e86807 (diff)
downloadphp-git-baac810eb8244de87944ab76b1f466d0d6ec4304.tar.gz
Improve pg_unescape_bytea() error message
-rw-r--r--ext/pgsql/pgsql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 1c78fffe55..128c2894f8 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);