diff options
author | Thomas Haller <thaller@redhat.com> | 2016-02-27 13:40:50 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-02-27 13:40:50 +0100 |
commit | 3587161ade40a4f093175217d87d6323b3aba168 (patch) | |
tree | 517e77c18491f81065daf9d4cf6997042416289a /src/libsystemd-network/sd-dhcp-client.c | |
parent | 06fb28b16eb4b6170c2e2c0cf1f673730309509b (diff) |
core: avoid compiler warning when compiling with -fexceptions
Initialize auto variables with cleanup attribute, otherwise we
get a compiler warning with -fexceptions.
./configure CFLAGS='-Wmaybe-uninitialized -fexceptions -O2'
Diffstat (limited to 'src/libsystemd-network/sd-dhcp-client.c')
-rw-r--r-- | src/libsystemd-network/sd-dhcp-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-network/sd-dhcp-client.c b/src/libsystemd-network/sd-dhcp-client.c index d484c37a73..1188b31500 100644 --- a/src/libsystemd-network/sd-dhcp-client.c +++ b/src/libsystemd-network/sd-dhcp-client.c @@ -408,7 +408,7 @@ static void client_stop(sd_dhcp_client *client, int error) { static int client_message_init(sd_dhcp_client *client, DHCPPacket **ret, uint8_t type, size_t *_optlen, size_t *_optoffset) { - _cleanup_free_ DHCPPacket *packet; + _cleanup_free_ DHCPPacket *packet = NULL; size_t optlen, optoffset, size; be16_t max_size; usec_t time_now; |