From ce997e944f66da452ed01b86b838508ee132abb7 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 24 Nov 2024 01:05:47 +0900 Subject: [PATCH] curl-util: do not configure new io event source when the event loop is already dead Similar to c5ecf0949460dd0bf3211db128a385ce6375252e, but for io event source. Fixes #35322. (cherry picked from commit 5b2926d9414f4333153ebe0bf169e1dd76129119) --- src/import/curl-util.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/import/curl-util.c b/src/import/curl-util.c index 1628f833a97..06d20eb5576 100644 --- a/src/import/curl-util.c +++ b/src/import/curl-util.c @@ -75,6 +75,10 @@ static int curl_glue_socket_callback(CURL *curl, curl_socket_t s, int action, vo return 0; } + /* Don't configure io event source anymore when the event loop is dead already. */ + if (g->event && sd_event_get_state(g->event) == SD_EVENT_FINISHED) + return 0; + r = hashmap_ensure_allocated(&g->ios, &trivial_hash_ops); if (r < 0) { log_oom();