From 520486e8b148af85bf11fa5e284f1a0e37e69ab4 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Wed, 2 Oct 2002 06:22:52 +0000 Subject: [PATCH] Clean up a little. --- ext/pgsql/pgsql.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 3b3990917d..37137d258c 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -2734,11 +2734,9 @@ PHP_FUNCTION(pg_unescape_bytea) to = (char *)php_pgsql_unescape_bytea((unsigned char*)from, from_len); if (!to) { - RETVAL_FALSE; - } - else { - RETVAL_STRINGL(to, to_len-1, 1); /* to_len includes addtional '\0' */ + RETURN_FALSE; } + RETVAL_STRINGL(to, to_len-1, 1); /* to_len includes addtional '\0' */ free(to); } /* }}} */ -- 2.50.1