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:
Vincent Sanders 2014-11-15 16:35:29 +00:00
parent 33c4a0d221
commit 59df200b83

View File

@ -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) {