File tree Expand file tree Collapse file tree 3 files changed +7
-31
lines changed Expand file tree Collapse file tree 3 files changed +7
-31
lines changed Original file line number Diff line number Diff line change 15
15
` RuntimeServices::query_variable_info ` methods now check the table
16
16
version to make sure it's 2.0 or higher before calling the associated
17
17
function pointers. This prevents potential invalid pointer access.
18
+
19
+ ### Removed
20
+
21
+ - Removed the ` exts::allocate_buffer ` function. This function could
22
+ cause undefined behavior when called with a ` Layout ` with an alignment
23
+ other than 1. A safe alternative is to use
24
+ [ ` Vec::into_boxed_slice ` ] ( https://doc.rust-lang.org/std/vec/struct.Vec.html#method.into_boxed_slice ) .
18
25
19
26
## uefi-macros - [ Unreleased]
20
27
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -61,8 +61,5 @@ pub mod prelude;
61
61
#[ cfg( feature = "alloc" ) ]
62
62
pub mod alloc;
63
63
64
- #[ cfg( feature = "exts" ) ]
65
- pub mod exts;
66
-
67
64
#[ cfg( feature = "logger" ) ]
68
65
pub mod logger;
You can’t perform that action at this time.
0 commit comments