mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 09:41:15 +00:00
Standardise path for lock file.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26860 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f26baae47c
commit
b8a8ec6be3
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-09-19 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/NSDistributedLock.m: Standardise the path we are given for
|
||||||
|
the lock file.
|
||||||
|
|
||||||
2008-09-18 Richard Frith-Macdonald <rfm@gnu.org>
|
2008-09-18 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/NSThread.m: try to make firing of thread performers
|
* Source/NSThread.m: try to make firing of thread performers
|
||||||
|
|
|
@ -125,13 +125,13 @@ static NSFileManager *mgr = nil;
|
||||||
NSString *lockDir;
|
NSString *lockDir;
|
||||||
BOOL isDirectory;
|
BOOL isDirectory;
|
||||||
|
|
||||||
_lockPath = [aPath copy];
|
_lockPath = [[aPath stringByStandardizingPath] copy];
|
||||||
_lockTime = nil;
|
_lockTime = nil;
|
||||||
|
|
||||||
lockDir = [_lockPath stringByDeletingLastPathComponent];
|
lockDir = [_lockPath stringByDeletingLastPathComponent];
|
||||||
if ([mgr fileExistsAtPath: lockDir isDirectory: &isDirectory] == NO)
|
if ([mgr fileExistsAtPath: lockDir isDirectory: &isDirectory] == NO)
|
||||||
{
|
{
|
||||||
NSLog(@"part of the path to the lock file '%@' is missing\n", _lockPath);
|
NSLog(@"part of the path to the lock file '%@' is missing\n", aPath);
|
||||||
RELEASE(self);
|
RELEASE(self);
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue