server_option_next_valid() NULL server_options dereference
From #47574 reported by alain_bkr:
../../client/options.c:4527:20: runtime error: applying zero offset to null pointer
That line is server_option_next_valid() : const struct server_option *const max = server_options + server_options_num;
server_options is NULL until server side has sent the settings information.
Attached patch meant even for S2_6.
From #47574 reported by alain_bkr:
../../client/options.c:4527:20: runtime error: applying zero offset to null pointer
That line is server_option_next_valid() : const struct server_option *const max = server_options + server_options_num;
server_options is NULL until server side has sent the settings information.