Fix uninitialized variable

master
Mathieu Maret 2 months ago committed by Mathieu Maret
parent 6580bb08ba
commit 44fa5967dd

@ -16,7 +16,7 @@
uaddr_t loadElfProg(const char *prog, struct process * proc)
{
int i;
uaddr_t lastUserAddr;
uaddr_t lastUserAddr = 0;
/**
* Typedefs, constants and structure definitions as given by the ELF

Loading…
Cancel
Save