device: fix scope of variable in commit_option()

This commit is contained in:
Thomas Haller
2020-04-29 22:07:47 +02:00
committed by Antonio Cardace
parent 4a293844b8
commit 05fd2a9272

View File

@@ -364,6 +364,7 @@ commit_option (NMDevice *device, NMSetting *setting, const Option *option, gbool
nm_auto_unset_gvalue GValue val = G_VALUE_INIT;
GParamSpec *pspec;
const char *value;
char value_buf[100];
if (slave)
nm_assert (NM_IS_SETTING_BRIDGE_PORT (setting));
@@ -387,7 +388,6 @@ commit_option (NMDevice *device, NMSetting *setting, const Option *option, gbool
break;
case G_TYPE_UINT64:
case G_TYPE_UINT: {
char value_buf[100];
guint64 uval;
if (pspec->value_type == G_TYPE_UINT64)