network-internal: initialize _cleanup_ variable

This commit is contained in:
Tom Gundersen 2014-06-29 22:26:06 +02:00
parent 31db01208b
commit 69f08c8338
1 changed files with 1 additions and 1 deletions

View File

@ -465,7 +465,7 @@ int deserialize_dhcp_routes(struct sd_dhcp_route **ret, size_t *ret_size, size_t
FOREACH_WORD(word, len, string, state) {
/* WORD FORMAT: dst_ip/dst_prefixlen,gw_ip */
_cleanup_free_ char* entry;
_cleanup_free_ char* entry = NULL;
char *tok, *tok_end;
unsigned n;
int r;