Revision: 13801
          http://sourceforge.net/p/skim-app/code/13801
Author:   hofman
Date:     2023-11-24 23:31:20 +0000 (Fri, 24 Nov 2023)
Log Message:
-----------
autorelease returned value

Modified Paths:
--------------
    trunk/SkimNotes/SKNXPCSkimReader.m

Modified: trunk/SkimNotes/SKNXPCSkimReader.m
===================================================================
--- trunk/SkimNotes/SKNXPCSkimReader.m  2023-11-24 23:26:44 UTC (rev 13800)
+++ trunk/SkimNotes/SKNXPCSkimReader.m  2023-11-24 23:31:20 UTC (rev 13801)
@@ -210,7 +210,7 @@
 - (NSString *)textNotesAtURL:(NSURL *)fileURL {
     __block NSString *string = nil;
     if ([self connectAndCheckTypeOfFile:fileURL synchronous:YES])
-        [agent readTextNotesAtURL:fileURL reply:^(NSString *s){ string = [s 
retain]; }];
+        [agent readTextNotesAtURL:fileURL reply:^(NSString *s){ string = [[s 
retain] autorelease]; }];
     return string;
 }
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to