1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-26 01:15:37 +00:00

[loop] check_bottom_halves after starting libevent and curl

dump with curl enabled did not work
This commit is contained in:
Witold Filipczyk 2024-03-18 18:19:12 +01:00
parent 88de3ca754
commit f2690c3e21

View File

@ -1149,7 +1149,6 @@ select_loop(void (*init)(void))
set_handlers(signal_pipe[0], clear_events_ptr, NULL, NULL, (void *)(intptr_t)signal_pipe[0]);
#endif
init();
check_bottom_halves();
#ifdef USE_LIBEVENT
enable_libevent();
@ -1206,6 +1205,7 @@ select_loop(void (*init)(void))
/* we do not call any curl_multi_socket*() function yet as we have no handles added! */
#endif
check_bottom_halves();
while (!program.terminate) {
check_signals();
if (1 /*(!F)*/) {
@ -1253,6 +1253,7 @@ select_loop(void (*init)(void))
curl_multi_setopt(g.multi, CURLMOPT_TIMERDATA, &g);
/* we do not call any curl_multi_socket*() function yet as we have no handles added! */
#endif
check_bottom_halves();
while (!program.terminate) {
struct timeval timeout = { 0, 0 };