Skip to content

Commit

Permalink
Fix possible uninitialized return value for *at()
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed May 9, 2018
1 parent 0feebbb commit 1c4adb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reprozip/native/syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ static int syscall_xxx_at(const char *name, struct Process *process,
}
else
{
int ret;
int ret = 0;
/* Shifts arguments */
size_t i;
register_type arg0 = process->params[0];
Expand Down

0 comments on commit 1c4adb3

Please sign in to comment.