Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

warning of leak in Xcode #164

Open
superllanboy opened this issue Jan 18, 2018 · 0 comments
Open

warning of leak in Xcode #164

superllanboy opened this issue Jan 18, 2018 · 0 comments

Comments

@superllanboy
Copy link

+(instancetype)reachabilityWithHostname:(NSString*)hostname
{
SCNetworkReachabilityRef ref = SCNetworkReachabilityCreateWithName(NULL, [hostname UTF8String]);
if (ref)
{
id reachability = [[self alloc] initWithReachabilityRef:ref];

    return reachability;
}

return nil;

}
Call to function 'SCNetworkReachabilityCreateWithName' returns a Core Foundation object of type SCNetworkReachabilityRef _Nullable with a +1 retain count
Assuming 'ref' is non-
Object leaked: object allocated and stored into 'ref' is not referenced later in this execution path and has a retain count of +1

i get the above error messages when analysing my project, and have no idea if this is a serious issue or not

please advise

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant