瀏覽代碼

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