From a502639412ef4fbffe6fc4e3d3f378cdcb950c1a Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Thu, 28 Aug 2014 11:37:34 +0200 Subject: [PATCH] remove the expression parts, which are always true --- ext/pgsql/pgsql.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 4e1ce50f1d..e3f64e0ed0 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1527,7 +1527,7 @@ PHP_FUNCTION(pg_connect_poll) return; } - if (pgsql_link == NULL && id == -1) { + if (pgsql_link == NULL) { RETURN_FALSE; } @@ -2314,7 +2314,7 @@ PHP_FUNCTION(pg_last_notice) return; } - if (pgsql_link == NULL && id == -1) { + if (pgsql_link == NULL) { RETURN_FALSE; } @@ -4856,7 +4856,7 @@ PHP_FUNCTION(pg_send_query_params) return; } - if (pgsql_link == NULL && id == -1) { + if (pgsql_link == NULL) { RETURN_FALSE; } @@ -4961,7 +4961,7 @@ PHP_FUNCTION(pg_send_prepare) return; } - if (pgsql_link == NULL && id == -1) { + if (pgsql_link == NULL) { RETURN_FALSE; } @@ -5039,7 +5039,7 @@ PHP_FUNCTION(pg_send_execute) return; } - if (pgsql_link == NULL && id == -1) { + if (pgsql_link == NULL) { RETURN_FALSE; } -- 2.50.1