mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-08 03:08:08 +02:00
dhcp: fix uninitialized pointer in DHCP listener's _method_call_handle()
Fixes:f67269b49d(cherry picked from commit6292851248)
This commit is contained in:
parent
e4d237d86b
commit
878baf7b33
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ _method_call_handle (NMDhcpListener *self,
|
||||||
gs_free char *iface = NULL;
|
gs_free char *iface = NULL;
|
||||||
gs_free char *pid_str = NULL;
|
gs_free char *pid_str = NULL;
|
||||||
gs_free char *reason = NULL;
|
gs_free char *reason = NULL;
|
||||||
gs_unref_variant GVariant *options;
|
gs_unref_variant GVariant *options = NULL;
|
||||||
int pid;
|
int pid;
|
||||||
gboolean handled = FALSE;
|
gboolean handled = FALSE;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue