mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-10 08:10:22 +01:00
Fix possible uninitialized variable
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4095 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
7faa88681b
commit
e15b737270
1 changed files with 1 additions and 1 deletions
|
|
@ -357,7 +357,7 @@ static char *
|
|||
plugin_get_hostname (SCPluginKeyfile *plugin)
|
||||
{
|
||||
GKeyFile *key_file;
|
||||
char *hostname;
|
||||
char *hostname = NULL;
|
||||
GError *error = NULL;
|
||||
|
||||
key_file = g_key_file_new ();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue