mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 23:50:10 +01:00
dhcp: fix leak in dhclient's dhclient_start()
Fixes:5d6d5cd136(cherry picked from commitc87faf07a1) (cherry picked from commit8f9240de96) (cherry picked from commitc740726b57) (cherry picked from commit0a69572cae) (cherry picked from commit13aaad7c5b) (cherry picked from commitd95e1304e7)
This commit is contained in:
parent
55d749f940
commit
b4b6089218
1 changed files with 6 additions and 2 deletions
|
|
@ -358,11 +358,15 @@ dhclient_start (NMDhcpClient *client,
|
|||
if (g_file_copy (src, dst, G_FILE_COPY_OVERWRITE, NULL, NULL, NULL, &error)) {
|
||||
/* Success; use the preferred leasefile path */
|
||||
g_free (priv->lease_file);
|
||||
priv->lease_file = g_strdup (g_file_get_path (dst));
|
||||
priv->lease_file = g_file_get_path (dst);
|
||||
} else {
|
||||
gs_free char *s_path = NULL;
|
||||
gs_free char *d_path = NULL;
|
||||
|
||||
/* Failure; just use the existing leasefile */
|
||||
_LOGW ("failed to copy leasefile %s to %s: %s",
|
||||
g_file_get_path (src), g_file_get_path (dst),
|
||||
(s_path = g_file_get_path (src)),
|
||||
(d_path = g_file_get_path (dst)),
|
||||
error->message);
|
||||
g_clear_error (&error);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue