aboutsummaryrefslogtreecommitdiffstats
path: root/table.h
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2016-10-08 01:27:41 +0000
committerTatsuya Kinoshita <tats@debian.org>2016-10-08 01:27:41 +0000
commit0c9aebb26a16ad3acc69b2e87ffd216d43879cb6 (patch)
tree7ab039b6b189f24fafbb8126a299a4ac8910d131 /table.h
parentPrevent global-buffer-overflow write in formUpdateBuffer (diff)
downloadw3m-0c9aebb26a16ad3acc69b2e87ffd216d43879cb6.tar.gz
w3m-0c9aebb26a16ad3acc69b2e87ffd216d43879cb6.zip
Treat table height as int instead of short
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=838952
Diffstat (limited to '')
-rw-r--r--table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/table.h b/table.h
index fdcdef3..df03143 100644
--- a/table.h
+++ b/table.h
@@ -100,7 +100,7 @@ struct table {
short minimum_width[MAXCOL];
short fixed_width[MAXCOL];
struct table_cell cell;
- short *tabheight;
+ int *tabheight;
struct table_in *tables;
short ntable;
short tables_size;