dhcp: fix uninitialized pointer in DHCP listener's _method_call_handle()

Fixes: f67269b49d
(cherry picked from commit 6292851248)
This commit is contained in:
Thomas Haller 2018-02-28 06:40:01 +01:00
parent e4d237d86b
commit 878baf7b33

View file

@ -145,7 +145,7 @@ _method_call_handle (NMDhcpListener *self,
gs_free char *iface = NULL;
gs_free char *pid_str = NULL;
gs_free char *reason = NULL;
gs_unref_variant GVariant *options;
gs_unref_variant GVariant *options = NULL;
int pid;
gboolean handled = FALSE;