aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2016-12-04 16:31:30 +0000
committerTatsuya Kinoshita <tats@debian.org>2016-12-05 12:48:30 +0000
commitd7f55d5959c3e06e9f110f13def7ae9015882e1e (patch)
treee024abf3d64442b13b086c676c1c130eba56667d /file.c
parentPrevent negative array index for marks in HTMLlineproc2body() (diff)
downloadw3m-d7f55d5959c3e06e9f110f13def7ae9015882e1e.tar.gz
w3m-d7f55d5959c3e06e9f110f13def7ae9015882e1e.zip
Prevent negative array index in process_textarea()
Bug-Debian: https://github.com/tats/w3m/issues/58
Diffstat (limited to '')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index ee72a87..50f6b9a 100644
--- a/file.c
+++ b/file.c
@@ -4012,7 +4012,7 @@ process_textarea(struct parsed_tag *tag, int width)
cur_textarea_size = 20;
if (parsedtag_get_value(tag, ATTR_COLS, &p)) {
cur_textarea_size = atoi(p);
- if (p[strlen(p) - 1] == '%')
+ if (strlen(p) > 0 && p[strlen(p) - 1] == '%')
cur_textarea_size = width * cur_textarea_size / 100 - 2;
if (cur_textarea_size <= 0) {
cur_textarea_size = 20;