From 2300bddb9ccf001364c79126754ca0df5baae138 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Wed, 2 Oct 2002 06:30:40 +0000 Subject: [PATCH] Fixed pg_escape_typea() --- ext/pgsql/pgsql.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } /* }}} */ -- 2.40.0