summaryrefslogtreecommitdiff
path: root/src/user/lib/elfload.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/lib/elfload.c')
-rw-r--r--src/user/lib/elfload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/lib/elfload.c b/src/user/lib/elfload.c
index a471513..5ba596f 100644
--- a/src/user/lib/elfload.c
+++ b/src/user/lib/elfload.c
@@ -12,9 +12,9 @@ void elf_execf(FILE *f) {
const size_t cap = 0x60000;
size_t pos = 0;
void *buf = malloc(cap); // TODO a way to get file size
+ fseek(f, 0, SEEK_SET);
if (buf && fread(buf, 1, cap - pos, f))
elf_exec(buf);
-
free(buf);
}