From 6636b3eb644c5c94014c54b7a69f3c1e35e5a0d0 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 18 Jun 2008 10:13:23 -0400 Subject: [PATCH] Return the NSXMLDocument in [DebuggerConnection processData:] as autorelease * Source/DebuggerConnection.m: (processData:): [autorelease] the retval --- Source/DebuggerConnection.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/DebuggerConnection.m b/Source/DebuggerConnection.m index ed5d798..8bcbf8d 100644 --- a/Source/DebuggerConnection.m +++ b/Source/DebuggerConnection.m @@ -317,7 +317,7 @@ return nil; } - return doc; + return [doc autorelease]; } @end -- 2.22.5