From 41b0fb73a0770fa24bfa72a89177c28d5300ee22 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 18 Dec 2009 17:40:13 +0000 Subject: [PATCH] * embryo: Prevent use of unitialized data. SVN revision: 44547 --- legacy/embryo/src/bin/embryo_cc_sc3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/legacy/embryo/src/bin/embryo_cc_sc3.c b/legacy/embryo/src/bin/embryo_cc_sc3.c index f10bb35487..ca1b4660ad 100644 --- a/legacy/embryo/src/bin/embryo_cc_sc3.c +++ b/legacy/embryo/src/bin/embryo_cc_sc3.c @@ -776,6 +776,7 @@ expression(int *constant, cell * val, int *tag, int chkfuncresult) else { *constant = FALSE; + *val = 0; } /* if */ if (tag != NULL) *tag = lval.tag;