Tagged Questions

8
votes
2answers
1k views

Clang Error on “Potential null dereference.”

I keep getting Clang errors on the following type of code and I can't figure out why they're erroneous or how to resolve them to Clang's satisfaction: + (NSString *)checkForLength: (NSString ...
4
votes
1answer
300 views

Why does the static analyzer show this bridged NSNumber to be leaking under ARC?

When running the Clang Static Analyzer against code that I've converted to use ARC, it's reporting the NSNumber in this block of code to be a leak: NSNumber *temporaryNumber = [NSNumber ...
4
votes
5answers
1k views

How can I fix this clang warning: “Object with +0 retain counts returned to caller where +1 (owning) retain count is expected”?

I have a piece of Objective-C code that looks like the following: - (NSString *)copyData:(NSData *)data { NSString *path = [[[self outputDirectory] stringByAppendingPathComponent:@"archive"] ...
2
votes
2answers
221 views

Deep copy of dictionaries gives Analyze error in Xcode 4.2

I have the following method in a NSDictionary category, to do a deep copy, which works fine. I just upgraded from Xcode 4.1 to 4.2, and the Analyze function gives two analyzer warnings for this code, ...
1
vote
4answers
5k views

Clang: what is “Method returns an Objective-C object with a +0 retain count” trying to tell me?

Running a static analysis with clang in both XCode 3.2 and Nikita Zhuk's Analysis Tool I've often come across this pair of warnings: Method returns an Objective-C object with a +0 retain count ...
0
votes
2answers
146 views

XCode Analyzer Warnings Without Details / Line Numbers

I ran the analyzer and found a handful of warnings that I can't associate with lines in the code. I'm not sure how to handle them. Clicking on them brings me to the right file in the editor, but the ...
0
votes
1answer
177 views

Telling Clang Static Analyzer about third-party libraries owning references

I maintain an Objective-C project which uses a C library that implements a garbage-collected scripting environment. In several cases, I need to put a retained Objective-C object in the private field ...