diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-15 16:00:33 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-15 16:00:33 +0000 |
commit | 587867d610337f40b191fc7946cdb875cdc7193f (patch) | |
tree | cc99a7a2699d969e818aed16708dbf9a568314a7 /table.h | |
parent | [w3m-dev 03437] Re: Check image size (diff) | |
download | w3m-587867d610337f40b191fc7946cdb875cdc7193f.tar.gz w3m-587867d610337f40b191fc7946cdb875cdc7193f.zip |
[w3m-dev 03438] Re: segmentation fault by large complex table.
* table.c (check_table_height): check MAXROWCELL
* table.h (MAXROWCELL): added
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | table.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: table.h,v 1.6 2002/11/05 15:45:53 ukai Exp $ */ +/* $Id: table.h,v 1.7 2002/11/15 16:00:34 ukai Exp $ */ #if (defined(MESCHACH) && !defined(MATRIX)) #define MATRIX #endif /* (defined(MESCHACH) && !defined(MATRIX)) */ @@ -34,6 +34,7 @@ typedef unsigned short table_attr; #define TBL_IN_COL 4 #define MAXCELL 20 +#define MAXROWCELL 1000 struct table_cell { short col[MAXCELL]; short colspan[MAXCELL]; |