mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-09 05:58:01 +02:00
shared: use nm_auto_unref_gtypeclass in _nm_utils_enum_from_str_full()
This commit is contained in:
parent
78b6fd47dc
commit
c1e40a4f39
1 changed files with 1 additions and 2 deletions
|
|
@ -225,7 +225,7 @@ _nm_utils_enum_from_str_full (GType type,
|
||||||
char **err_token,
|
char **err_token,
|
||||||
const NMUtilsEnumValueInfo *value_infos)
|
const NMUtilsEnumValueInfo *value_infos)
|
||||||
{
|
{
|
||||||
GTypeClass *klass;
|
nm_auto_unref_gtypeclass GTypeClass *klass = NULL;
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
int value = 0;
|
int value = 0;
|
||||||
gs_free char *str_clone = NULL;
|
gs_free char *str_clone = NULL;
|
||||||
|
|
@ -317,7 +317,6 @@ _nm_utils_enum_from_str_full (GType type,
|
||||||
|
|
||||||
NM_SET_OUT (err_token, !ret && s[0] ? g_strdup (s) : NULL);
|
NM_SET_OUT (err_token, !ret && s[0] ? g_strdup (s) : NULL);
|
||||||
NM_SET_OUT (out_value, ret ? value : 0);
|
NM_SET_OUT (out_value, ret ? value : 0);
|
||||||
g_type_class_unref (klass);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue