Advisory Database
  • Advisories
  • Dependency Scanning
  1. cargo
  2. ›
  3. id-map
  4. ›
  5. GHSA-qq4c-hm99-979m

GHSA-qq4c-hm99-979m: IdMap from_iter may lead to uninitialized memory being freed on drop

August 18, 2025

Due to a flaw in the constructor id_map::IdMap::from_iter, ill-formed objects may be created in which the amount of actually initialized memory is less than what is expected by the fields of IdMap. Specifically, the field ids is initialized based on the capacity of the vector values, which is constructed from the provided iterator. However, the length of this vector may be smaller than its capacity.

In such cases, when the resulting IdMap is dropped, its destructor incorrectly assumes that values contains ids.len() == values.capacity() initialized elements and attempts to iterate over and drop them. This leads to dereferencing and attempting to free uninitialized memory, resulting in undefined behavior and potential segmentation faults.

The bug was fixed in commit fab6922, and all unsafe code was removed from the crate.

Note that the maintainer recommends using the following alternatives:

  • slab
  • slotmap

References

  • github.com/advisories/GHSA-qq4c-hm99-979m
  • github.com/andrewhickman/id-map
  • github.com/andrewhickman/id-map/commit/fab6922b955b5a2986dfff2ccb341628faec30ed
  • github.com/andrewhickman/id-map/issues/4
  • rustsec.org/advisories/RUSTSEC-2025-0050.html

Code Behaviors & Features

Detect and mitigate GHSA-qq4c-hm99-979m with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions starting from 0.1.6 before 0.2.2

Fixed versions

  • 0.2.2

Solution

Upgrade to version 0.2.2 or above.

Weakness

  • CWE-665: Improper Initialization

Source file

cargo/id-map/GHSA-qq4c-hm99-979m.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Tue, 19 Aug 2025 12:18:54 +0000.