projects
/
wine
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b21807
)
Removed strange checkj for !filename, so we don't get section NULL
author
Marcus Meissner
<marcus@jet.franken.de>
Sun, 26 Nov 2000 22:36:19 +0000
(22:36 +0000)
committer
Alexandre Julliard
<julliard@winehq.org>
Sun, 26 Nov 2000 22:36:19 +0000
(22:36 +0000)
accesses later.
files/profile.c
patch
|
blob
|
blame
|
history
diff --git
a/files/profile.c
b/files/profile.c
index
f7d320b
..
1472038
100644
(file)
--- a/
files/profile.c
+++ b/
files/profile.c
@@
-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);