diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2013-07-28 14:48:03 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2013-07-28 14:48:03 +0000 |
commit | 0f9ce7be313fd666b084c9619625663917c7158b (patch) | |
tree | 6bd0c00011a38a0a7bcb571703b21da03d569066 | |
parent | Support the button element as defined in HTML 4.01 (diff) | |
download | w3m-0f9ce7be313fd666b084c9619625663917c7158b.tar.gz w3m-0f9ce7be313fd666b084c9619625663917c7158b.zip |
Fix segfault of process_button()
-rw-r--r-- | file.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3757,7 +3757,7 @@ Str process_button(struct parsed_tag *tag) { Str tmp = NULL; - char *p, *q, *r, *qq = NULL; + char *p, *q, *r, *qq = ""; int qlen, v; if (cur_form_id < 0) { |