We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af12985 commit eb9033cCopy full SHA for eb9033c
src/interfaces/odbc/gpps.c
@@ -55,7 +55,6 @@ GetPrivateProfileString(char *theSection, /* section name */
55
char *aString;
56
size_t aLineLength;
57
size_t aReturnLength = 0;
58
-
59
BOOL aSectionFound = FALSE;
60
BOOL aKeyFound = FALSE;
61
int j = 0;
@@ -151,9 +150,9 @@ GetPrivateProfileString(char *theSection, /* section name */
151
150
/* accept as matched if NULL key or exact match */
152
153
if(!theSection || !strcmp(aStart, theSection))
154
- {
155
aSectionFound = TRUE;
156
- }
+ else
+ aSectionFound = FALSE;
157
}
158
159
break;
0 commit comments