diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2016-11-24 20:42:26 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2016-11-24 20:42:26 -0500 |
commit | 8e90b748a51b502a3b0430d58cfbc7954d4a801d (patch) | |
tree | b21a6586b444c3604344c862c204083f7fb266af /src/LYOptions.c | |
parent | da3e74522784403f7b98fb00637209557a87c0f3 (diff) | |
download | lynx-snapshots-8e90b748a51b502a3b0430d58cfbc7954d4a801d.tar.gz |
snapshot of project "lynx", label v2-8-9dev_11c
Diffstat (limited to 'src/LYOptions.c')
-rw-r--r-- | src/LYOptions.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/LYOptions.c b/src/LYOptions.c index 5ee18534..4c6b98dd 100644 --- a/src/LYOptions.c +++ b/src/LYOptions.c @@ -1,4 +1,4 @@ -/* $LynxId: LYOptions.c,v 1.168 2015/12/18 01:01:21 tom Exp $ */ +/* $LynxId: LYOptions.c,v 1.170 2016/11/24 18:30:48 tom Exp $ */ #include <HTUtils.h> #include <HTFTP.h> #include <HTTP.h> /* 'reloading' flag */ @@ -981,7 +981,7 @@ void LYoptions(void) if (!LYSelectPopups) #endif /* !VMS && !USE_SLANG */ { - LYmove(L_Rawmode, COL_OPTION_VALUES); + LYmove(L_RAWMODE + 1, COL_OPTION_VALUES); LYclrtoeol(); ShowBool(LYRawMode); } @@ -2617,8 +2617,6 @@ static PostPair *break_data(bstring *data) if (q == NULL) outofmem(__FILE__, "break_data(calloc)"); - assert(q != NULL); - do { /* * First, break up on '&', sliding 'p' on down the line. @@ -2673,8 +2671,6 @@ static PostPair *break_data(bstring *data) if (q == NULL) outofmem(__FILE__, "break_data(realloc)"); - assert(q != NULL); - q[count].tag = NULL; } while (p != NULL && p[0] != '\0'); return q; |