summaryrefslogtreecommitdiff
path: root/soltools/cpp/_lex.c
diff options
context:
space:
mode:
authorMatthias Huetsch [mhu] <matthias.huetsch@oracle.com>2010-11-25 14:14:24 +0100
committerMatthias Huetsch [mhu] <matthias.huetsch@oracle.com>2010-11-25 14:14:24 +0100
commitdc09799bb92c397fbf48f0efe863cd358dc6a1f8 (patch)
tree62630f50eb0c4029b72efb1836b3546d2b000c39 /soltools/cpp/_lex.c
parentb24c11f89613f6d9ed3429e642b0c4bd610efd7e (diff)
#i115784# soltools: fix memory errors uncovered by valgrind and other tools.
Diffstat (limited to 'soltools/cpp/_lex.c')
-rw-r--r--soltools/cpp/_lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/soltools/cpp/_lex.c b/soltools/cpp/_lex.c
index 2ff188ff2264..2236fd9db260 100644
--- a/soltools/cpp/_lex.c
+++ b/soltools/cpp/_lex.c
@@ -262,7 +262,7 @@ void
bigfsm[j][fp->state] = (short) nstate;
continue;
case C_ALPH:
- for (j = 0; j <= 256; j++)
+ for (j = 0; j < 256; j++)
#ifdef S390
if( isalpha( j ) || (j == '_') )
#else