Removed strange checkj for !filename, so we don't get section NULL
authorMarcus Meissner <marcus@jet.franken.de>
Sun, 26 Nov 2000 22:36:19 +0000 (22:36 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Sun, 26 Nov 2000 22:36:19 +0000 (22:36 +0000)
accesses later.

files/profile.c

index f7d320b..1472038 100644 (file)
@@ -1485,7 +1485,7 @@ BOOL WINAPI WritePrivateProfileSectionA( LPCSTR section,
     EnterCriticalSection( &PROFILE_CritSect );
 
     if (PROFILE_Open( filename )) {
-        if (!section && !string && !filename)
+        if (!section && !string)
             PROFILE_ReleaseFile();  /* always return FALSE in this case */
         else if (!string) /* delete the named section*/
            ret = PROFILE_SetString(section,NULL,NULL);