فهرست منبع

Fixes Xcode 8 analyzer warning saying that it was missing a release in dealloc (#1678)

Sergio Campamá 9 سال پیش
والد
کامیت
71f4a9c6f3
1فایلهای تغییر یافته به همراه5 افزوده شده و 0 حذف شده
  1. 5 0
      objectivec/GPBDescriptor.m

+ 5 - 0
objectivec/GPBDescriptor.m

@@ -271,6 +271,11 @@ static NSArray *NewFieldsArrayForHasIndex(int hasIndex,
   return self;
   return self;
 }
 }
 
 
+- (void)dealloc {
+  [package_ release];
+  [super dealloc];
+}
+
 @end
 @end
 
 
 @implementation GPBOneofDescriptor
 @implementation GPBOneofDescriptor