From c4ad338aedd05dbcc4dc2d49852fe5b5099b1f2e Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Fri, 7 Apr 2017 14:16:18 -0400 Subject: [PATCH] (fix) initialize variable to avoid strange nil-return value on invocation (fixes #4048) --- SOPE/GDLContentStore/GCSFolder.m | 1 + 1 file changed, 1 insertion(+) diff --git a/SOPE/GDLContentStore/GCSFolder.m b/SOPE/GDLContentStore/GCSFolder.m index 8c895785a..68ba9bbed 100644 --- a/SOPE/GDLContentStore/GCSFolder.m +++ b/SOPE/GDLContentStore/GCSFolder.m @@ -1021,6 +1021,7 @@ andAttribute: (EOAttribute *)_attribute NSInvocation *anInvocation; SEL aSelector; + quickRow = nil; aSelector = @selector(quickRecordFromContent:container:nameInContainer:); aSignature = [[theComponent class] instanceMethodSignatureForSelector: aSelector]; anInvocation = [NSInvocation invocationWithMethodSignature:aSignature];