mirror of
https://github.com/status-im/evmc.git
synced 2025-02-23 16:38:06 +00:00
Merge pull request #374 from ethereum/rust-host-safety
rust: add assertion for evmc_context.host
This commit is contained in:
commit
c117256e16
@ -173,6 +173,7 @@ impl ExecutionMessage {
|
||||
|
||||
impl<'a> ExecutionContext<'a> {
|
||||
pub fn new(_context: &'a mut ffi::evmc_context) -> Self {
|
||||
assert!(_context.host != std::ptr::null());
|
||||
let _tx_context = unsafe {
|
||||
assert!((*(_context.host)).get_tx_context.is_some());
|
||||
(*(_context.host)).get_tx_context.unwrap()(_context as *mut ffi::evmc_context)
|
||||
|
Loading…
x
Reference in New Issue
Block a user