Removed useless length check in BlConfigParseIniFile()
This commit is contained in:
parent
cabd176038
commit
e8574a6d8c
@ -42,12 +42,6 @@ BlConfigParseIniFile(IN PWCHAR FileContents,
|
|||||||
{
|
{
|
||||||
Length = RtlWideStringLength(Line, 0);
|
Length = RtlWideStringLength(Line, 0);
|
||||||
|
|
||||||
/* Don't parse a blank line */
|
|
||||||
if(Length <= 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Parse */
|
/* Parse */
|
||||||
if (Length < 1)
|
if (Length < 1)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user