mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
fix for bug #41626
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37757 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
35d26b824d
commit
20d172dfbb
4 changed files with 14 additions and 7 deletions
|
@ -5352,7 +5352,7 @@ static NSFileManager *fm = nil;
|
|||
return NO;
|
||||
}
|
||||
return [d writeToFile: path
|
||||
options: atomically ? NSAtomicWrite : 0
|
||||
options: atomically ? NSDataWritingAtomic : 0
|
||||
error: error];
|
||||
}
|
||||
|
||||
|
@ -5387,7 +5387,7 @@ static NSFileManager *fm = nil;
|
|||
return NO;
|
||||
}
|
||||
return [d writeToURL: url
|
||||
options: atomically ? NSAtomicWrite : 0
|
||||
options: atomically ? NSDataWritingAtomic : 0
|
||||
error: error];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue