summaryrefslogtreecommitdiff
path: root/src/libsystemd-network/sd-dhcp-lease.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-02-29 16:03:32 +0100
committerLennart Poettering <lennart@poettering.net>2016-02-29 16:03:32 +0100
commit0522e11f59482e051dcdaff47ab05a781c8447a0 (patch)
treede3cbb69c5088bad5ca76c3cc51dc06e6bbdea1d /src/libsystemd-network/sd-dhcp-lease.c
parent450e89f6b1e1e3c4d86239287b4049d891da93cb (diff)
parent3587161ade40a4f093175217d87d6323b3aba168 (diff)
Merge pull request #2756 from thom311/master
core: avoid compiler warning when compiling with -fexceptions
Diffstat (limited to 'src/libsystemd-network/sd-dhcp-lease.c')
-rw-r--r--src/libsystemd-network/sd-dhcp-lease.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-network/sd-dhcp-lease.c b/src/libsystemd-network/sd-dhcp-lease.c
index 7a119fd488..ef50ed17a1 100644
--- a/src/libsystemd-network/sd-dhcp-lease.c
+++ b/src/libsystemd-network/sd-dhcp-lease.c
@@ -825,7 +825,7 @@ int dhcp_lease_save(sd_dhcp_lease *lease, const char *lease_file) {
r = sd_dhcp_lease_get_client_id(lease, &client_id, &client_id_len);
if (r >= 0) {
- _cleanup_free_ char *client_id_hex;
+ _cleanup_free_ char *client_id_hex = NULL;
client_id_hex = hexmem(client_id, client_id_len);
if (!client_id_hex) {