summaryrefslogtreecommitdiff
path: root/ext/pgsql
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2013-07-08 18:51:37 +0900
committerYasuo Ohgaki <yohgaki@php.net>2013-07-08 18:51:37 +0900
commit2bc8271b29752e82eb0b9bb7f85e6f9dbaee9a78 (patch)
tree003eb98cbb24a14c3f02c81de51d696e85241407 /ext/pgsql
parentd1c261d7f890c037fdbd4f54cc3a43ff7473a2d2 (diff)
downloadphp-git-2bc8271b29752e82eb0b9bb7f85e6f9dbaee9a78.tar.gz
Add warning to pg_unescape_bytea() when invalid parameter is passed
Diffstat (limited to 'ext/pgsql')
-rw-r--r--ext/pgsql/pgsql.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 0fa4031b37..1c78fffe55 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -4212,6 +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");
RETURN_FALSE;
}
RETVAL_STRINGL(to, to_len, 0);