mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-29 19:41:00 +00:00
Remove bogus error log pointed out by Riccardo Mottola
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28356 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
14db1fcb9f
commit
0459f95c95
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2009-06-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/win32/NSMessagePort.m: Don't use NSLog() to report error
|
||||||
|
when writing to mailslot ... it's usually just that the remote
|
||||||
|
end has terminated, so invalidating the port silently is better.
|
||||||
|
|
||||||
2009-06-13 Richard Frith-Macdonald <rfm@gnu.org>
|
2009-06-13 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Headers/Foundation/NSKeyedArchiver.h:
|
* Headers/Foundation/NSKeyedArchiver.h:
|
||||||
|
|
|
@ -872,7 +872,11 @@ again:
|
||||||
}
|
}
|
||||||
else if ((errno = GetLastError()) != ERROR_IO_PENDING)
|
else if ((errno = GetLastError()) != ERROR_IO_PENDING)
|
||||||
{
|
{
|
||||||
NSLog(@"unable to write to mailslot '%@' - %@",
|
/* This is probably an end of file
|
||||||
|
* eg. when the process at the other end has terminated.
|
||||||
|
*/
|
||||||
|
NSDebugMLog(@"NSMessagePort",
|
||||||
|
@"unable to write to mailslot '%@' - %@",
|
||||||
this->name, [NSError _last]);
|
this->name, [NSError _last]);
|
||||||
[self invalidate];
|
[self invalidate];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue