diff options
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 057c9da0ede..dc49387d6c5 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -3766,8 +3766,7 @@ keep_going: /* We will come back to here until there is } /* Something went wrong with "SHOW transaction_read_only". */ - if (res) - PQclear(res); + PQclear(res); /* Append error report to conn->errorMessage. */ appendPQExpBuffer(&conn->errorMessage, @@ -3818,8 +3817,7 @@ keep_going: /* We will come back to here until there is } /* Something went wrong with "SELECT pg_is_in_recovery()". */ - if (res) - PQclear(res); + PQclear(res); /* Append error report to conn->errorMessage. */ appendPQExpBuffer(&conn->errorMessage, |