From c52bf728bc8527c563ebd9706cf34892f8688619 Mon Sep 17 00:00:00 2001 From: Florian Zeitz Date: Sun, 22 May 2011 23:50:02 +0200 Subject: [PATCH] Add dealloc for XMPPJID --- src/XMPPJID.m | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/XMPPJID.m b/src/XMPPJID.m index 5270889..8c842fd 100644 --- a/src/XMPPJID.m +++ b/src/XMPPJID.m @@ -70,6 +70,15 @@ return self; } +- (void)dealloc +{ + [node release]; + [domain release]; + [resource release]; + + [super dealloc]; +} + - copy { XMPPJID *new = [[XMPPJID alloc] init];