diff options
| author | Michael Biebl <biebl@debian.org> | 2022-03-23 11:52:46 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-03-23 11:52:46 +0100 |
| commit | 024ee2bf31c1c57823c8bf6588714a4ede5baed1 (patch) | |
| tree | 5fd63275acf48411b17c71c92771267359ba95d6 /src/core/dhcp | |
| parent | 0514770b02f34ccb56b6bc52010452663c6717ed (diff) | |
| parent | 8c623dddbdebe354cb94bfc559a5371a14865317 (diff) | |
Update upstream source from tag 'upstream/1.36.4'
Update to upstream version '1.36.4' with Debian dir 64567d8bf986e0827368a9989323ba0356fe2888
Diffstat (limited to 'src/core/dhcp')
| -rw-r--r-- | src/core/dhcp/nm-dhcp-client.c | 1 | ||||
| -rw-r--r-- | src/core/dhcp/nm-dhcp-dhcpcd.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/core/dhcp/nm-dhcp-client.c b/src/core/dhcp/nm-dhcp-client.c index ec910389..85e48ff7 100644 --- a/src/core/dhcp/nm-dhcp-client.c +++ b/src/core/dhcp/nm-dhcp-client.c @@ -1209,6 +1209,7 @@ dispose(GObject *object) nm_clear_g_source_inst(&priv->no_lease_timeout_source); nm_clear_g_source_inst(&priv->ipv6_lladdr_timeout_source); + nm_clear_pointer(&priv->effective_client_id, g_bytes_unref); G_OBJECT_CLASS(nm_dhcp_client_parent_class)->dispose(object); } diff --git a/src/core/dhcp/nm-dhcp-dhcpcd.c b/src/core/dhcp/nm-dhcp-dhcpcd.c index 45f96ec9..4b3429ef 100644 --- a/src/core/dhcp/nm-dhcp-dhcpcd.c +++ b/src/core/dhcp/nm-dhcp-dhcpcd.c @@ -70,7 +70,7 @@ ip4_start(NMDhcpClient *client, GError **error) const NMDhcpClientConfig *client_config; gs_unref_ptrarray GPtrArray *argv = NULL; pid_t pid; - GError *local; + GError *local = NULL; gs_free char *cmd_str = NULL; const char *dhcpcd_path; |