X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/9234efdd6caadd01f9b28637b44b7f88c42e0cec..84a701a4f9f2e6f49bd78ccd9f2ba0370e841da9:/PlaylistNode.m diff --git a/PlaylistNode.m b/PlaylistNode.m index 12ae00b..050912c 100644 --- a/PlaylistNode.m +++ b/PlaylistNode.m @@ -27,7 +27,7 @@ _name = [n retain]; _type = t; _index = i; - _children = [[NSMutableArray alloc] init]; + _children = nil; _parent = nil; } return self; @@ -53,6 +53,9 @@ - (NSMutableArray *)children { + if (!_children) { + _children = [[NSMutableArray alloc] init]; + } return _children; }