aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/sandbox.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c
index 2f5859e77..6fdddd2f2 100644
--- a/src/common/sandbox.c
+++ b/src/common/sandbox.c
@@ -830,7 +830,10 @@ prot_strings(sandbox_cfg_t* cfg)
memcpy(pr_mem_next, param_val, param_size);
// re-point el parameter to protected
- free((char*)((smp_param_t*)el->param)->value);
+ {
+ void *old_val = ((smp_param_t*)el->param)->value;
+ tor_free(old_val);
+ }
((smp_param_t*)el->param)->value = (intptr_t) pr_mem_next;
((smp_param_t*)el->param)->prot = 1;