From e8574a6d8c231812754c38e4b6df922adb5b1d42 Mon Sep 17 00:00:00 2001 From: Jozef Nagy Date: Wed, 6 Dec 2023 16:27:10 +0100 Subject: [PATCH] Removed useless length check in BlConfigParseIniFile() --- xtldr2/config.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/xtldr2/config.c b/xtldr2/config.c index e854c55..aa7f10e 100644 --- a/xtldr2/config.c +++ b/xtldr2/config.c @@ -42,12 +42,6 @@ BlConfigParseIniFile(IN PWCHAR FileContents, { Length = RtlWideStringLength(Line, 0); - /* Don't parse a blank line */ - if(Length <= 0) - { - continue; - } - /* Parse */ if (Length < 1) {