Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions http.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,12 @@ static CURL * g_http_handle = NULL;
static int
http_progress_callback(void *clientp, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal, curl_off_t ulnow)
{
#ifdef WIN32
if (UNBLOCKED_SIGNAL_QUEUE())
{
pgwin32_dispatch_queued_signals();
}
#endif
/* Check the PgSQL global flags */
return QueryCancelPending || ProcDiePending;
}
Expand Down