Fixed an uninitiated pointer.
This commit is contained in:
@@ -19,13 +19,13 @@ struct yywork
|
|||||||
struct yysvf
|
struct yysvf
|
||||||
{
|
{
|
||||||
struct yywork *yystoff;
|
struct yywork *yystoff;
|
||||||
};
|
} yysvec[1];
|
||||||
|
|
||||||
unsigned char fails = 0;
|
unsigned char fails = 0;
|
||||||
|
|
||||||
int main(int n, char **args)
|
int main(int n, char **args)
|
||||||
{
|
{
|
||||||
struct yysvf *yystate;
|
struct yysvf *yystate = yysvec;
|
||||||
struct yywork *yyt;
|
struct yywork *yyt;
|
||||||
|
|
||||||
yystate->yystoff = yycrank;
|
yystate->yystoff = yycrank;
|
||||||
|
|||||||
Reference in New Issue
Block a user