diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2013-07-08 18:51:37 +0900 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2013-07-08 18:51:37 +0900 |
commit | 2bc8271b29752e82eb0b9bb7f85e6f9dbaee9a78 (patch) | |
tree | 003eb98cbb24a14c3f02c81de51d696e85241407 /ext/pgsql | |
parent | d1c261d7f890c037fdbd4f54cc3a43ff7473a2d2 (diff) | |
download | php-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.c | 1 |
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); |