From: Greg King Date: Tue, 30 Jun 2015 12:54:13 +0000 (-0400) Subject: Fixed an uninitiated pointer. X-Git-Tag: V2.16~256^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cd5935deb77951521ed88aae52933f9a94f94830;p=cc65 Fixed an uninitiated pointer. --- diff --git a/test/val/cc65141022.c b/test/val/cc65141022.c index d5aadd240..1d7792cf2 100755 --- a/test/val/cc65141022.c +++ b/test/val/cc65141022.c @@ -19,13 +19,13 @@ struct yywork struct yysvf { struct yywork *yystoff; -}; +} yysvec[1]; unsigned char fails = 0; int main(int n, char **args) { - struct yysvf *yystate; + struct yysvf *yystate = yysvec; struct yywork *yyt; yystate->yystoff = yycrank;