We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 755b06c commit 9aae474Copy full SHA for 9aae474
Branch-SDK/Branch-SDK/BNCReachability.m
@@ -101,4 +101,11 @@ - (nullable NSString *)reachabilityStatus {
101
return [self translateReachabilityStatus:[self currentReachabilityStatus]];
102
}
103
104
+- (void)dealloc {
105
+ if (self.reachability) {
106
+ CFRelease(self.reachability);
107
+ self.reachability = nil;
108
+ }
109
+}
110
+
111
@end
0 commit comments