summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Klimeš <jklimes@redhat.com>2014-09-05 10:16:58 +0200
committerJiří Klimeš <jklimes@redhat.com>2014-09-05 10:25:03 +0200
commit01d0d376152c747e179cd32ae1bbe5f71252ef9b (patch)
tree4c3e409daa5d7e772ad66d0994a38b65efd3c9b7
parent00695f1939fdfe3a25d23b3022ae9006e63429af (diff)
dhcp: fix g_error_free() called with a bad argument
-rw-r--r--src/dhcp-manager/nm-dhcp-helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dhcp-manager/nm-dhcp-helper.c b/src/dhcp-manager/nm-dhcp-helper.c
index ff591d8297..a9c8f396e3 100644
--- a/src/dhcp-manager/nm-dhcp-helper.c
+++ b/src/dhcp-manager/nm-dhcp-helper.c
@@ -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;
}