소스 검색

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;
 }
 
+- (void)dealloc {
+  [package_ release];
+  [super dealloc];
+}
+
 @end
 
 @implementation GPBOneofDescriptor