mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-16 17:22:44 +03:00
Error in RISC OS form entry API changes.
When the form entry changes were made the RISC OS implementation was updated but the loop that counts entries was using an incorrect loop iterator variable which was never incremented hence causing an infinite loop.
This commit is contained in:
parent
33c4a0d221
commit
59df200b83
@ -4585,7 +4585,7 @@ bool ro_gui_window_prepare_form_select_menu(struct gui_window *g,
|
||||
option = form_select_get_option(control, entries);
|
||||
while (option != NULL) {
|
||||
entries++;
|
||||
option = form_select_get_option(control, item);
|
||||
option = form_select_get_option(control, entries);
|
||||
}
|
||||
|
||||
if (entries == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user