diff options
| -rw-r--r-- | file.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -6010,7 +6010,7 @@ HTMLlineproc2body(Buffer *buf, Str (*feed) (), int llimit)  			n_textarea = -1;  		    break;  		case HTML_N_TEXTAREA_INT: -		    if (n_textarea >= 0) { +		    if (a_textarea && n_textarea >= 0) {  			FormItemList *item =  			    (FormItemList *)a_textarea[n_textarea]->url;  			item->init_value = item->value = @@ -6028,7 +6028,7 @@ HTMLlineproc2body(Buffer *buf, Str (*feed) (), int llimit)  			n_select = -1;  		    break;  		case HTML_N_SELECT_INT: -		    if (n_select >= 0) { +		    if (a_select && n_select >= 0) {  			FormItemList *item =  			    (FormItemList *)a_select[n_select]->url;  			item->select_option = select_option[n_select].first; | 
