mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-03 10:08:14 +02:00
libnm: fix uninitialized variable in nm_connection_replace_settings_from_connection()
Found by Coverity. Fixes:91aacbef41('libnm: refactor tracking of NMSetting in NMConnection') (cherry picked from commit951ba8f9fd)
This commit is contained in:
parent
5dfd80683d
commit
1e5f003714
1 changed files with 1 additions and 1 deletions
|
|
@ -649,7 +649,7 @@ nm_connection_replace_settings_from_connection(NMConnection *connection,
|
|||
{
|
||||
NMConnectionPrivate *priv;
|
||||
NMConnectionPrivate *new_priv;
|
||||
gboolean changed;
|
||||
gboolean changed = FALSE;
|
||||
int i;
|
||||
|
||||
g_return_if_fail(NM_IS_CONNECTION(connection));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue