1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-16 14:01:05 +01:00

Merge pull request #14772 from GrahamDennis/gdennis/fix-heap-use-after-free

[libstore]: Fix a heap-use-after-free bug
This commit is contained in:
Sergei Zimmerman 2025-12-13 00:25:11 +00:00 committed by GitHub
commit 8358409fd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -79,7 +79,7 @@ struct DerivationBuilderParams
*/
const StorePathSet & inputPaths;
const std::map<std::string, InitialOutput> & initialOutputs;
const std::map<std::string, InitialOutput> initialOutputs;
const BuildMode & buildMode;