Эх сурвалжийг харах

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

Sergio Campamá 9 жил өмнө
parent
commit
71f4a9c6f3

+ 5 - 0
objectivec/GPBDescriptor.m

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