SQLite

Diff
Login

Differences From Artifact [f06b7e98a6]:

To Artifact [66a16b5e00]:


336
337
338
339
340
341
342



343
344
345
346
347
348
349
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352







+
+
+







    pParser->yystack = NULL;
    pParser->yystksz = 0;
    if( yyGrowStack(pParser) ){
      pParser->yystack = &pParser->yystk0;
      pParser->yystksz = 1;
    }
#endif
#ifndef YYNOERRORRECOVERY
    pParser->yyerrcnt = -1;
#endif
    pParser->yytos = pParser->yystack;
    pParser->yystack[0].stateno = 0;
    pParser->yystack[0].major = 0;
  }
  return pParser;
}