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
No known key found for this signature in database
GPG Key ID: 5F72C3BF3BD614D8

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