Merge "CAS: Fix memory leak in FactoryLoader"

This commit is contained in:
Treehugger Robot 2023-02-01 05:06:29 +00:00 committed by Gerrit Code Review
commit a81c9a1e2f

View file

@ -139,6 +139,7 @@ bool FactoryLoader<T>::enumeratePlugins(vector<AidlCasPluginDescriptor>* results
queryPluginsFromPath(pluginPath, results);
}
}
closedir(pDir);
return true;
}