From f92e9ed28f277ec870e2786e707852ab7d4292a6 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Tue, 9 Aug 2016 00:02:24 +0900 Subject: Prevent segfault with malformed input type Bug-Debian: https://github.com/tats/w3m/issues/7 [CVE-2016-9430] Origin: https://anonscm.debian.org/cgit/collab-maint/w3m.git/commit/?id=59b91cd8e30c86f23476fa81ae005cabff49ebb6 --- file.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/file.c b/file.c index 1e363d0..d06b2cf 100644 --- a/file.c +++ b/file.c @@ -3622,9 +3622,10 @@ process_input(struct parsed_tag *tag) Strcat(tmp, getLinkNumberStr(0)); Strcat_char(tmp, '('); } - Strcat(tmp, Sprintf(""); - Strcat(tmp, Sprintf("", - cur_hseq++, cur_form_id, p, html_quote(r), qq)); + cur_hseq++, cur_form_id, html_quote(p), + html_quote(r), qq)); return tmp; } -- cgit v1.2.3