Skip to content
Snippets Groups Projects
Verified Commit d5f85906 authored by jD91mZM2's avatar jD91mZM2
Browse files

Fix off-by-one error :|

parent 1c4e8852
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ impl Stack {
}
fn envp(&self) -> *const *const u8 {
unsafe { self.argv().offset(self.argc() + 1) }
unsafe { self.argv().offset(self.argc()) }
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment