init vars before usage

SVN revision: 11889
This commit is contained in:
tsauerbeck 2004-10-15 15:12:05 +00:00 committed by tsauerbeck
parent 75d0539221
commit 381ac7f9f8
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ static Embryo_Cell
exported_rec(Embryo_Program *ep, Embryo_Cell *params)
{
Embryo_Function fn;
Embryo_Cell ret, arg1, arg2;
Embryo_Cell ret = 0, arg1, arg2;
// params[0] = number of bytes of params passed
if (params[0] != 3 * sizeof(Embryo_Cell)) return -1;