mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-31 21:50:11 +01:00
libnm/keyfile: fix compile warning about uninitialized variable
Fixes:71323122c6(cherry picked from commit47551df352)
This commit is contained in:
parent
41d0902dc9
commit
582ef15d3e
1 changed files with 1 additions and 1 deletions
|
|
@ -277,7 +277,7 @@ _nm_keyfile_equals (GKeyFile *kf_a, GKeyFile *kf_b)
|
|||
gboolean
|
||||
_nm_keyfile_has_values (GKeyFile *keyfile)
|
||||
{
|
||||
gs_strfreev char **groups;
|
||||
gs_strfreev char **groups = NULL;
|
||||
|
||||
g_return_val_if_fail (keyfile, FALSE);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue