From 700387144db81be8ed39c0906ee22cb24ce794c4 Mon Sep 17 00:00:00 2001 From: reinelt <> Date: Thu, 15 Mar 2001 09:47:13 +0000 Subject: [lcd4linux @ 2001-03-15 09:47:13 by reinelt] some fixes to ppdef off-by-one bug in processor.c fixed --- processor.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'processor.c') diff --git a/processor.c b/processor.c index 45eaff7..fdda661 100644 --- a/processor.c +++ b/processor.c @@ -1,4 +1,4 @@ -/* $Id: processor.c,v 1.20 2001/03/14 13:19:29 ltoetsch Exp $ +/* $Id: processor.c,v 1.21 2001/03/15 09:47:13 reinelt Exp $ * * main data processing * @@ -20,6 +20,11 @@ * * * $Log: processor.c,v $ + * Revision 1.21 2001/03/15 09:47:13 reinelt + * + * some fixes to ppdef + * off-by-one bug in processor.c fixed + * * Revision 1.20 2001/03/14 13:19:29 ltoetsch * Added pop3/imap4 mail support * @@ -141,8 +146,8 @@ #define ROWS 16 #define GPOS 16 -char *row[ROWS]; -char gpo[GPOS]; +char *row[ROWS+1]; +char gpo[GPOS+1]; int rows, cols, xres, yres, supported_bars, gpos; int token_usage[256]={0,}; -- cgit v1.2.3