From: Anthony Minessale Date: Wed, 7 Nov 2012 22:46:30 +0000 (-0600) Subject: regression from 0160072adcc516b53816d8db379ba4bf6862b182 code was outside of code... X-Git-Tag: v1.3.3~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfe3fdf347a79ae99a7e5a7bfcec1292b1b13eba;p=thirdparty%2Ffreeswitch.git regression from 0160072adcc516b53816d8db379ba4bf6862b182 code was outside of code block --- diff --git a/src/switch_pgsql.c b/src/switch_pgsql.c index 328a5811eb..5a0ca21809 100644 --- a/src/switch_pgsql.c +++ b/src/switch_pgsql.c @@ -159,9 +159,12 @@ SWITCH_DECLARE(switch_pgsql_status_t) switch_pgsql_cancel_real(const char *file, ret = SWITCH_PGSQL_FAIL; } PQfreeCancel(cancel); -#endif + /* Make sure the query is fully cancelled */ while (PQgetResult(handle->con) != NULL); + +#endif + return ret; }