chore(deps): update rust crate clap to v4.6.1 #56
GitHub Actions / Security audit
succeeded
Apr 16, 2026 in 0s
Security advisories found
1 unsound
Details
Warnings
RUSTSEC-2026-0008
Potential undefined behavior when dereferencing Buf struct
| Details | |
|---|---|
| Status | unsound |
| Package | git2 |
| Version | 0.20.2 |
| URL | rust-lang/git2-rs#1213 |
| Date | 2026-02-02 |
if we dereference the Buf struct right after calling new() or default() on Buf struct, it passes Null Pointer to the unsafe function slice::from_raw_parts. Based on the safety section documentation of function,
data must be non-null and aligned even for zero-length slices or slices of ZSTs. Thus, passing Null Pointer will lead to undefined behavior.
Loading