diff options
| author | Michael Biebl <biebl@debian.org> | 2017-12-12 15:53:47 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2017-12-12 15:53:47 +0100 |
| commit | 743faa81fda27a9c03298e8d6074623dc30db606 (patch) | |
| tree | 28418e92b22530bb05f043084626291ed1e3d46b /src/nm-pacrunner-manager.c | |
| parent | 8dda18a856c2a05cefcab6278469c9d8df30f935 (diff) | |
| parent | afcd268ea7b1149fbfb66bce4eca659b675da0a2 (diff) | |
Update upstream source from tag 'upstream/1.10.2'
Update to upstream version '1.10.2' with Debian dir 41691ea145b392588cd4e9e7496b61d5a95965fb
Diffstat (limited to 'src/nm-pacrunner-manager.c')
| -rw-r--r-- | src/nm-pacrunner-manager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nm-pacrunner-manager.c b/src/nm-pacrunner-manager.c index 08e10e40..36f517a2 100644 --- a/src/nm-pacrunner-manager.c +++ b/src/nm-pacrunner-manager.c @@ -128,7 +128,7 @@ config_unref (Config *config) if (config->refcount == 1) { g_variant_unref (config->args); g_free (config->path); - c_list_unlink (&config->lst); + c_list_unlink_stale (&config->lst); g_slice_free (Config, config); } else config->refcount--; @@ -524,7 +524,7 @@ nm_pacrunner_manager_remove (NMPacrunnerManager *self, NMPacrunnerCallId *call_i } } - c_list_unlink_init (&config->lst); + c_list_unlink (&config->lst); config_unref (config); } @@ -570,7 +570,7 @@ dispose (GObject *object) CList *iter, *safe; c_list_for_each_safe (iter, safe, &priv->configs) { - c_list_unlink_init (iter); + c_list_unlink (iter); config_unref (c_list_entry (iter, Config, lst)); } |