From 9ec1ad0a9cfdc3269dbbe724e9925f1078706bcb Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sat, 20 Jul 2019 13:45:36 +0200 Subject: [PATCH] typo --- crates/memoffset/RUSTSEC-2019-0011.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/memoffset/RUSTSEC-2019-0011.toml b/crates/memoffset/RUSTSEC-2019-0011.toml index c68916f..cf03265 100644 --- a/crates/memoffset/RUSTSEC-2019-0011.toml +++ b/crates/memoffset/RUSTSEC-2019-0011.toml @@ -5,7 +5,7 @@ date = "2019-07-16" title = "Flaw in offset_of and span_of causes SIGILL, drops uninitialized memory of arbitrary type on panic in client code" description = """ Affected versions of this crate caused traps and/or memory unsafety by zero-initializing references. -They also could leat to uninitialized memory being dropped if the field for which the offset is requested was behind a deref coercion, and that deref coercion caused a panic. +They also could lead to uninitialized memory being dropped if the field for which the offset is requested was behind a deref coercion, and that deref coercion caused a panic. The flaw was corrected by using `MaybeUninit`. """