mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
fix for bug #38310
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36152 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
97a68beea2
commit
dcd39b2096
2 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
2013-02-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSURL.m: a data url ignores any base URL.
|
||||
* Source/GSAvahiClient.m: remove self from runloop on dealloc.
|
||||
|
||||
2013-02-15 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -284,6 +284,9 @@ GSAvahiClientState(AvahiClient *client, AvahiClientState state, void *userInfo)
|
|||
|
||||
- (void) avahiClientDealloc
|
||||
{
|
||||
NSRunLoop *rl = [ctx runLoop];
|
||||
NSString *mode = [[ctx mode] retain];
|
||||
[ctx removeFromRunLoop: rl forMode: mode];
|
||||
[self freeClient];
|
||||
[ctx release];
|
||||
[_lock release];
|
||||
|
|
Loading…
Reference in a new issue