Removed useless length check in BlConfigParseIniFile()

This commit is contained in:
Jozef Nagy
2023-12-06 16:27:10 +01:00
parent cabd176038
commit e8574a6d8c

View File

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