mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-01-20 18:41:03 +01:00
Update the wording of RUSTSEC-2023-0072 (#1831)
Make the interior mutability issue more clear
This commit is contained in:
@@ -16,6 +16,6 @@ patched = [">= 0.10.60"]
|
||||
|
||||
# `openssl` `X509StoreRef::objects` is unsound
|
||||
|
||||
This function returned a reference into an OpenSSL datastructure, but there was no way to ensure OpenSSL would not mutate the datastructure behind ones back.
|
||||
This function returned a shared reference into an OpenSSL datastructure but did not account for interior mutability. OpenSSL may modify the data behind this reference, meaning accesses can race and the reference is unsound.
|
||||
|
||||
Use of this function should be replaced with `X509StoreRef::all_certificates`.
|
||||
|
||||
Reference in New Issue
Block a user