You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Affected versions of this crate called `mem::uninitialized()` in the HTTP1 parser to create values of type `httparse::Header` (from the `httparse` crate).
16
+
This is unsound, since `Header` contains references and thus must be non-null.
17
+
18
+
The flaw was corrected by avoiding the use of `mem::uninitialized()`, using `MaybeUninit` instead.
0 commit comments