Skip to content

Fix memory leak in kpasswdserver, caught by ASAN

David Faure requested to merge work/dfaure/fix_authinfo_leak into master

This was: typedef QList<AuthInfoContainer *> AuthInfoContainerList; QHash<QString, AuthInfoContainerList *> m_authDict;

The dict values (pointer to lists) were deleted but not the items in the list. Fixed by making it a QVector Tested with kpasswdservertest

Merge request reports