41ee88b15c
The child watch source attached to thread context didn't work due to the release of it's main loop and context outside. So we attach the source to the global default main context to make it work and avoid zombies.
14 lines
760 B
Diff
14 lines
760 B
Diff
diff -up ./src/polkitbackend/polkitbackendjsauthority.cpp.ori ./src/polkitbackend/polkitbackendjsauthority.cpp
|
|
--- ./src/polkitbackend/polkitbackendjsauthority.cpp.ori 2018-04-03 22:57:57.000000000 +0200
|
|
+++ ./src/polkitbackend/polkitbackendjsauthority.cpp 2018-08-14 16:47:48.416993302 +0200
|
|
@@ -1595,7 +1595,8 @@ utils_spawn_data_free (UtilsSpawnData *d
|
|
(GSourceFunc) utils_child_watch_from_release_cb,
|
|
source,
|
|
(GDestroyNotify) g_source_destroy);
|
|
- g_source_attach (source, data->main_context);
|
|
+ /* attach source to the global default main context */
|
|
+ g_source_attach (source, NULL);
|
|
g_source_unref (source);
|
|
data->child_pid = 0;
|
|
}
|