init vars before usage
authortsauerbeck <tsauerbeck>
Fri, 15 Oct 2004 15:12:05 +0000 (15:12 +0000)
committertsauerbeck <tsauerbeck@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 15 Oct 2004 15:12:05 +0000 (15:12 +0000)
SVN revision: 11889

legacy/embryo/src/bin/embryo_main.c

index 55d18e3..990f1ac 100644 (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;