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).
This is unsound, since Header contains references and thus must be non-null.
The flaw was corrected by avoiding the use of mem::uninitialized(), using MaybeUninit instead.
hyper
0.10.16
Affected versions of this crate called
mem::uninitialized()
in the HTTP1 parser to create values of typehttparse::Header
(from thehttparse
crate).This is unsound, since
Header
contains references and thus must be non-null.The flaw was corrected by avoiding the use of
mem::uninitialized()
, usingMaybeUninit
instead.See advisory page for additional details.
The text was updated successfully, but these errors were encountered: