Skip to content

Commit

Permalink
fixup! Changes to better handle relocation
Browse files Browse the repository at this point in the history
  • Loading branch information
0152la committed Jul 18, 2024
1 parent 2617b47 commit 1482d41
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/compartment.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -1051,7 +1050,7 @@ find_lib_dep_sym_in_comp(const char *to_find,
if (res.found)
{
break;
};
}
}
}
return res;
Expand Down

0 comments on commit 1482d41

Please sign in to comment.