diff options
Diffstat (limited to 'src/LYMainLoop.c')
-rw-r--r-- | src/LYMainLoop.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/LYMainLoop.c b/src/LYMainLoop.c index dbf51dd4..eee3d22e 100644 --- a/src/LYMainLoop.c +++ b/src/LYMainLoop.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMainLoop.c,v 1.236 2018/02/15 01:53:44 tom Exp $ + * $LynxId: LYMainLoop.c,v 1.238 2018/03/01 22:20:33 Takeshi.Hataguchi Exp $ */ #include <HTUtils.h> #include <HTAccess.h> @@ -2165,7 +2165,8 @@ static int handle_LYK_DOWNLOAD(int *cmd, } return 0; } - if (isLYNXOPTIONS(links[curdoc.link].l_form->submit_action)) { + if (isEmpty(links[curdoc.link].l_form->submit_action) || + isLYNXOPTIONS(links[curdoc.link].l_form->submit_action)) { if (*old_c != real_c) { *old_c = real_c; HTUserMsg(NO_DOWNLOAD_SPECIAL); @@ -6725,7 +6726,7 @@ int mainloop(void) p = links[curdoc.link].lname; } - if (strlen(p) < (sizeof(sjis_buff) / 10)) { + if (strlen(p) < ((sizeof(sjis_buff) / 2) - 1)) { strcpy(temp_buff, p); if (StrChr(temp_buff, '%')) { HTUnEscape(temp_buff); |