Skip to content
Snippets Groups Projects
Commit 72ba1739 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix another memory leak case in sandbox.c:prot_strings()

This is related to the rest of 523587a5
parent 9222707e
No related branches found
No related tags found
No related merge requests found
......@@ -1076,7 +1076,7 @@ prot_strings(scmp_filter_ctx ctx, sandbox_cfg_t* cfg)
SCMP_CMP(0, SCMP_CMP_EQ, (intptr_t) pr_mem_base));
if (ret) {
log_err(LD_BUG,"(Sandbox) mremap protected memory filter fail!");
return ret;
goto out;
}
// no munmap of the protected base address
......
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