Do not accept values from sections following the specified section.

This commit is contained in:
Tom Lane 2001-03-10 22:30:57 +00:00
parent af129857c4
commit eb9033ce95
1 changed files with 2 additions and 3 deletions

View File

@ -55,7 +55,6 @@ GetPrivateProfileString(char *theSection, /* section name */
char *aString;
size_t aLineLength;
size_t aReturnLength = 0;
BOOL aSectionFound = FALSE;
BOOL aKeyFound = FALSE;
int j = 0;
@ -151,9 +150,9 @@ GetPrivateProfileString(char *theSection, /* section name */
/* accept as matched if NULL key or exact match */
if(!theSection || !strcmp(aStart, theSection))
{
aSectionFound = TRUE;
}
else
aSectionFound = FALSE;
}
break;