libnm-util: fix leak in _nm_connection_verify()

Regression introduced by commit 2570c5a17c.

Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
Thomas Haller 2014-07-15 21:55:40 +02:00
parent 49463a9e7b
commit 2fdaa29f08

View file

@ -833,7 +833,7 @@ _nm_connection_verify (NMConnection *connection, GError **error)
NM_CONNECTION_ERROR_CONNECTION_TYPE_INVALID,
"connection type '%s' is not a base type",
ctype);
return FALSE;
goto EXIT;
}
s_ip4 = nm_connection_get_setting_ip4_config (connection);