dhcp: fix g_error_free() called with a bad argument

This commit is contained in:
Jiří Klimeš 2014-09-05 10:16:58 +02:00
parent 00695f1939
commit 01d0d37615

View file

@ -120,7 +120,7 @@ shared_connection_init (void)
g_printerr ("Error: could not get the system bus. Make sure "
"the message bus daemon is running! Message: %s\n",
error->message);
g_error_free (&error);
g_error_free (error);
return NULL;
}