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-firewall-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-firewall-manager.c')
| -rw-r--r-- | src/nm-firewall-manager.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nm-firewall-manager.c b/src/nm-firewall-manager.c index b9878592..216d5fc8 100644 --- a/src/nm-firewall-manager.c +++ b/src/nm-firewall-manager.c @@ -186,7 +186,7 @@ _cb_info_create (NMFirewallManager *self, static void _cb_info_free (CBInfo *info) { - c_list_unlink (&info->lst); + c_list_unlink_stale (&info->lst); if (info->mode != CB_INFO_MODE_IDLE) { if (info->dbus.arg) g_variant_unref (info->dbus.arg); @@ -213,7 +213,7 @@ _cb_info_complete_normal (CBInfo *info, GError *error) nm_assert (c_list_contains (&priv->pending_calls, &info->lst)); - c_list_unlink_init (&info->lst); + c_list_unlink (&info->lst); _cb_info_callback (info, error); _cb_info_free (info); @@ -428,7 +428,7 @@ nm_firewall_manager_cancel_call (NMFirewallManagerCallId call) nm_assert (c_list_contains (&priv->pending_calls, &info->lst)); - c_list_unlink_init (&info->lst); + c_list_unlink (&info->lst); nm_utils_error_set_cancelled (&error, FALSE, "NMFirewallManager"); @@ -527,7 +527,7 @@ again: _handle_dbus_start (self, info); } else { _LOGD (info, "complete: fake success"); - c_list_unlink_init (&info->lst); + c_list_unlink (&info->lst); _cb_info_callback (info, NULL); _cb_info_free (info); goto again; |