Don't assign NULL to a char.
This commit is contained in:
parent
5f002aff6f
commit
83c93c70ba
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: token.l,v 1.14 2003/09/12 07:45:22 itojun Exp $ */
|
/* $NetBSD: token.l,v 1.15 2003/10/21 02:38:15 fvdl Exp $ */
|
||||||
/* $KAME: token.l,v 1.43 2003/07/25 09:35:28 itojun Exp $ */
|
/* $KAME: token.l,v 1.43 2003/07/25 09:35:28 itojun Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -114,7 +114,7 @@ tagged { return(TAGGED); }
|
|||||||
/* count up for nl */
|
/* count up for nl */
|
||||||
{
|
{
|
||||||
char *p;
|
char *p;
|
||||||
for (p = yytext; *p != NULL; p++)
|
for (p = yytext; *p != 0; p++)
|
||||||
if (*p == '\n')
|
if (*p == '\n')
|
||||||
lineno++;
|
lineno++;
|
||||||
}
|
}
|
||||||
@ -223,7 +223,7 @@ any { return(ANY); }
|
|||||||
{quotedstring} {
|
{quotedstring} {
|
||||||
char *p = yytext;
|
char *p = yytext;
|
||||||
while (*++p != '"') ;
|
while (*++p != '"') ;
|
||||||
*p = NULL;
|
*p = 0;
|
||||||
yytext++;
|
yytext++;
|
||||||
yylval.val.len = yyleng - 2;
|
yylval.val.len = yyleng - 2;
|
||||||
yylval.val.buf = strdup(yytext);
|
yylval.val.buf = strdup(yytext);
|
||||||
|
Loading…
Reference in New Issue
Block a user