From: Yasuo Ohgaki Date: Wed, 2 Oct 2002 06:30:40 +0000 (+0000) Subject: Fixed pg_escape_typea() X-Git-Tag: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2300bddb9ccf001364c79126754ca0df5baae138;p=php Fixed pg_escape_typea() --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 37137d258c..0d591fff98 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -2732,11 +2732,11 @@ PHP_FUNCTION(pg_unescape_bytea) return; } - to = (char *)php_pgsql_unescape_bytea((unsigned char*)from, from_len); + to = (char *)php_pgsql_unescape_bytea((unsigned char*)from, &to_len); if (!to) { RETURN_FALSE; } - RETVAL_STRINGL(to, to_len-1, 1); /* to_len includes addtional '\0' */ + RETVAL_STRINGL(to, to_len, 1); free(to); } /* }}} */