Fixes Xcode 8 analyzer warning saying that it was missing a release in dealloc (#1678)
This commit is contained in:
parent
088c5c491e
commit
71f4a9c6f3
1 changed files with 5 additions and 0 deletions
|
@ -271,6 +271,11 @@ static NSArray *NewFieldsArrayForHasIndex(int hasIndex,
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void)dealloc {
|
||||
[package_ release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation GPBOneofDescriptor
|
||||
|
|
Loading…
Add table
Reference in a new issue