Tagged Questions

7
votes
1answer
321 views

Xcode static analyzer and copyWithZone

The Xcode 4 static analyzer flags this method as a having an over-released return value when that does not seem to be the case. - (id)copyWithZone:(NSZone *)zone { return [[[self class] ...
7
votes
3answers
833 views

Is it possible to suppress Xcode 4 static analyzer warnings?

The Xcode 4 static analyzer reports in my code some false positives. Is there any way to suppress them?
4
votes
1answer
301 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"] ...
3
votes
1answer
215 views

Clang static analyzer on iPhone app showing errors with latest version

When I run my code through the version 252 checker binary, there are no analysis errors. However, when I change to use the latest 253 checker, it returns a slew of errors, all of which do not make ...
3
votes
1answer
247 views

LLVM/Clang bug found in convenience method and NSClassFromString(…) alloc/release

I am analyzing Objective-C iPhone project with LLVM/Clang static analyzer. I keep getting two reported bugs, but I am pretty sure that the code is correct. 1) Convenience method. + (UILabel ...
2
votes
1answer
143 views

Static Analyzer falsely finding an expression to be “always 0”

I have a property, noteName, declared as follows: @property (nonatomic,assign) IVNoteName noteName; and defined as follows: @synthesize noteName; but when I attempt to use it, the static ...
2
votes
2answers
140 views

How to make clear to Clang static analyzer when something's not leaking?

When using Clang static analyzer to analyze my Objective-C code for iOS, I get lots of "potential leaks". Many of the leaks make me wonder why it's erroneous at all. One example that left me wondering ...
2
votes
1answer
145 views

Apple changed their Memory Management Rule for Naming Convention

As stated in Cocoa Memory Management Rules from before You take ownership of an object if you create it using a method whose name begins with “alloc” or “new” or contains “copy” (for example, ...
2
votes
1answer
382 views

Xcode 3.2.4 Analyzer skipped this file?

Having just upgraded to iOS 4.1 (Xcode 3.2.4) I am getting warnings when using the static analyser that I don't think I was previously getting when using 3.2.3 Now the project compiles just fine, ...
2
votes
2answers
3k views

CLang error (objective C): value stored during initialization is never read

Foo *oFoo = [[[Foo alloc] init] autorelease]; This is how I was taught to program in Objective C, yet the CLang error checker complains that the initial value was never read. But oFoo is an object ...
2
votes
2answers
331 views

Interpreting clang static analyzer messages

Why does the Clang Static Analyzer (CSA) output the following message: Although the value stored to 'self' is used in the enclosing expression, the value is never actually read from 'self' ...
1
vote
2answers
158 views

Static Analyzer showing wrong leak?? (XCode 4.0, iOS 4.3 and above)

Happy November to all, Well I tried Xcode Build and analyze on my project, and it showed some unusual leaks, which I couldn't quite accept with my knowledge of Objective C. So I decided to put up a ...
1
vote
1answer
67 views

Can't find a leak from the Static Analyzer

I am getting some errors from the Clang Static Analyzer saying that I have a few leaks from the following code. However I am unable to find the leak. Please tell me where the leak is. Favourites ...
1
vote
1answer
95 views

How do I prevent certain kinds of analyzer leak reports?

I am wrapping a certain C API in Objective-C. I have a convenience method that takes some CFTypeRef from the procedural API and returns a wrapping object from the OOP API. This object keeps the passed ...
1
vote
1answer
319 views

XCode/Static Analyzer: Suppressing a retain count/leak warning

I have a function that is creating a variable, but not deallocating it. It passes this object on with a message to another function that deals with the memory management. My question is how do I ...
1
vote
1answer
200 views

Clang static analyzer gives warning over autoreleased

result = [result stringByReplacingOccurrencesOfString:@"ç" withString:@"c"]; result = [result stringByReplacingOccurrencesOfString:@"Ç" withString:@"c"]; clang Static analyzer gives warning ...
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
3answers
139 views

false positives Xcode4 Analyzer

In response to a comment made on this question: Is it possible to suppress Xcode 4 static analyzer warnings?, here is a false positive (or at least I believe so). The code below gives the following ...
0
votes
2answers
147 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
169 views

Don't understand memory analysis

I have upgraded my XCode to versio 3.2.3 to support iOS4 on my iphone project. using the static analyser I checked for memory management problems. In one of my routines I get the following problem: ...
0
votes
1answer
367 views

Is the scope of what Xcode's “Build and Analyze” will catch as a leak supposed to be this limited?

It doesn't care about this: NSString* leaker() { return [[NSString alloc] init]; } I thought it would have been smart enough to check if any code paths could call that function without releasing ...