From 1482d4175f08eec6c7ade8e61405266f79ef3bfa Mon Sep 17 00:00:00 2001 From: Andrei Lascu Date: Thu, 18 Jul 2024 16:33:51 +0100 Subject: [PATCH] fixup! Changes to better handle relocation --- src/compartment.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/compartment.c b/src/compartment.c index ba9cea0..54e9199 100644 --- a/src/compartment.c +++ b/src/compartment.c @@ -184,7 +184,6 @@ comp_from_elf(char *filename, char **entry_points, size_t entry_point_count, new_comp->scratch_mem_size // size of scratch memory ); - print_comp(new_comp); return new_comp; } @@ -1051,7 +1050,7 @@ find_lib_dep_sym_in_comp(const char *to_find, if (res.found) { break; - }; + } } } return res;