Skip to content

warning of leak in Xcode #164

Description

@superllanboy

+(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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions