use MB_LEN_MAX instead of MB_CUR_MAX for array declaration, because
MB_CUR_MAX may be a non-constant expression
This commit is contained in:
parent
8c9912db33
commit
6df3d70406
|
@ -1,5 +1,5 @@
|
|||
%{
|
||||
/* $NetBSD: scan.l,v 1.7 1995/10/02 17:29:59 jpo Exp $ */
|
||||
/* $NetBSD: scan.l,v 1.8 1995/10/23 13:38:51 jpo Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994, 1995 Jochen Pohl
|
||||
|
@ -33,7 +33,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static char rcsid[] = "$NetBSD: scan.l,v 1.7 1995/10/02 17:29:59 jpo Exp $";
|
||||
static char rcsid[] = "$NetBSD: scan.l,v 1.8 1995/10/23 13:38:51 jpo Exp $";
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
|
@ -741,7 +741,7 @@ ccon()
|
|||
static int
|
||||
wccon()
|
||||
{
|
||||
static char buf[MB_CUR_MAX + 1];
|
||||
static char buf[MB_LEN_MAX + 1];
|
||||
int i, c;
|
||||
wchar_t wc;
|
||||
|
||||
|
|
Loading…
Reference in New Issue