configure_again:
ua->send_msg(_("Plugin Restore Options\n"));
ua->send_msg(_("Option Current Value Default Value\n"));
- for (nb=0; ini->items[nb].name; nb++) {
+ for (nb=0; nb < MAX_INI_ITEMS && ini->items[nb].name ; nb++) {
if (ini->items[nb].found) {
/* When calling the handler, It will convert the value
/* When reading a ini file, we limit the number of items that we
* can create
*/
-#define MAX_INI_ITEMS 32
+#define MAX_INI_ITEMS 64
/* Special RestoreObject name used to get user input at restore time */
#define INI_RESTORE_OBJECT_NAME "RestoreOptions"