RUSTSEC-2026-0302
UNKNOWNstackgraphs::c is a public module. From 0.0.3 through the current crates.io release 0.14.1, its pointer-taking entry points are pub extern "C" fn rather than unsafe fn. Safe Rust can call them.
sgstackgraphfree frees the pointer with Box::fromraw. sgstackgraphfree(std::ptr::nullmut()) is immediate undefined behavior. The same shape is used by the other free exports and by getters and mutators that dereference the caller-supplied pointer or pass it to fromrawparts (sgstackgraphnodes, sgstackgraphaddedges, and the rest of the pointer-taking functions in src/c.rs). Constructors that take no pointer are not part of this issue.
The upstream repository is archived, so a fix cannot be filed there and no patched release exists. The soundness fix is to make every pointer-taking export unsafe extern "C" fn, with a safety comment that the pointer is non-null and, for free, came from the matching constructor.