device/bridge: fix uninitialized variable in commit_option()

Fixes: 93e38cbe56 ('nm-setting-bridge: add 'group-address' bridge option')
This commit is contained in:
Thomas Haller 2020-04-09 09:32:08 +02:00
parent 95888e8861
commit 36ab1e841f

View file

@ -380,6 +380,7 @@ commit_option (NMDevice *device, NMSetting *setting, const Option *option, gbool
break;
default:
nm_assert_not_reached ();
value = NULL;
break;
}