Fix a memory leak when parsing IP addresses from D-Bus

fix-mem-leak
Michael Zanetti 2022-06-09 00:14:24 +02:00
parent 9fabbed08c
commit 3e002a2394
1 changed files with 1 additions and 0 deletions

View File

@ -362,6 +362,7 @@ QStringList NetworkDevice::readIpAddresses(const QString &property, const QStrin
arg >> m;
ret.append(m.value("address").toString());
}
arg.endArray();
}
return ret;
}