mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-02 15:04:52 +00:00
Correctly initialize 'wordlen'.
This commit is contained in:
parent
e93f9da7af
commit
2f2295c182
@ -148,7 +148,7 @@ struct htmlparser_state {
|
|||||||
unsigned char tagattrptr;
|
unsigned char tagattrptr;
|
||||||
char tagattrparam[WWW_CONF_MAX_URLLEN + 1];
|
char tagattrparam[WWW_CONF_MAX_URLLEN + 1];
|
||||||
unsigned char tagattrparamptr;
|
unsigned char tagattrparamptr;
|
||||||
unsigned char lastchar, quotechar;
|
unsigned char quotechar;
|
||||||
unsigned char majorstate, lastmajorstate;
|
unsigned char majorstate, lastmajorstate;
|
||||||
char linkurl[WWW_CONF_MAX_URLLEN + 1];
|
char linkurl[WWW_CONF_MAX_URLLEN + 1];
|
||||||
|
|
||||||
@ -249,7 +249,7 @@ htmlparser_init(void)
|
|||||||
{
|
{
|
||||||
s.majorstate = s.lastmajorstate = MAJORSTATE_DISCARD;
|
s.majorstate = s.lastmajorstate = MAJORSTATE_DISCARD;
|
||||||
s.minorstate = MINORSTATE_TEXT;
|
s.minorstate = MINORSTATE_TEXT;
|
||||||
s.lastchar = 0;
|
s.wordlen = 0;
|
||||||
#if WWW_CONF_FORMS
|
#if WWW_CONF_FORMS
|
||||||
s.formaction[0] = 0;
|
s.formaction[0] = 0;
|
||||||
#endif /* WWW_CONF_FORMS */
|
#endif /* WWW_CONF_FORMS */
|
||||||
|
Loading…
Reference in New Issue
Block a user