From 4010d8fd2dbd1f99ec3c00c680eeca7cd24d2827 Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 8 Aug 2002 09:53:45 +0000 Subject: [PATCH] Infinite loop bug fixed git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@663 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/Ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/exehead/Ui.c b/Source/exehead/Ui.c index d3f5fc97..d87510a2 100644 --- a/Source/exehead/Ui.c +++ b/Source/exehead/Ui.c @@ -327,7 +327,7 @@ int ui_doinstall(void) break; } } - if (size==g_inst_header->str_tables_num) { + if (size==g_inst_header->str_tables_num && !c) { c=1; goto lang_again; }