Tagged Questions

The Clang Static Analyzer (http://clang-analyzer.llvm.org) is an open source (supported by Apple) source code analysis tool which find bugs in C and Objective-C programs. It can be run either as a standalone tool or within Xcode.

learn more… | top users | synonyms

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 ...
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
837 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?
5
votes
1answer
304 views

start clang static analyzer with xcodebuild

I'm trying to set up clang static analyzer on a hudson build server and if I follow the advises in this blog post I've got the following errors: cc1obj: error: unrecognized command line option ...
5
votes
1answer
453 views

Example code to trigger Clang's static analyser

I would like to see a small but complete snippet of code that will cause Clang's static analyser to complain. My motivation is mostly that I'm trying to get it to work on my PIC32 code, and I need a ...
4
votes
1answer
302 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
1answer
185 views

Clang user documentation

I was unsure whether to ask here or in superuser, but this site seemed more appropriate I'm looking for documentation/analysis on Clang specifically for these two areas: comparison of warnings ...
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
241 views

Xcode 4 “Fix it” - when does it appear?

I would like to know when the "Fix-it" should appear? Is it possible to make appear on all errors (and suggest a change?) Clearly an error in my code, which "Fix-it" analyzed and detected. But can it ...
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
118 views

Core Data produces Analyzer warnings

I am doing the final touch ups on an app and I am getting rid of every compiler/analyzer warning. I have a bunch of Class methods that wrap my apps access to Core Data entities. This is "provoking" ...
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
142 views

Strange Xcode Analyze results

When I Analyze my project in Xcode, I get a few strange errors. All of this code is part of a single method which creates arrays that can be used to make MKAnnotations. Sorry if this is an inundation ...
2
votes
3answers
605 views

Clang scan-build won't work with Xcode 4.2 LLVM 3.0 build configuration

I've installed Xcode 4.2 final version to be able to compile for iOS 5. We are using Jenkins for CI and run Clang scan-build from the llvm.org project page. (Version 258) The project is configured to ...
2
votes
2answers
227 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, ...
2
votes
1answer
260 views

If I use g++ as my compiler, how do I scan a c++ file with the clang static analyzer?

I use g++ to compile my C++ project. When I try to use the clang static analyzer (scan-build) to check my code, I get an error: >> scan-build g++ main.cpp could not find clang line How do I ...
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
156 views

Xcode 4 static code analysis question

This is the follow up to my question earlier about the Xcode 4 static analyzer. It is not specifically a problem since I have the code now working as it needs to, but I am just wondering how things ...
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
2answers
123 views

Any good tutorials on the Build and Analyze feature in Xcode?

I would like to know is there any tutorial to use xcode build and anylyse tool... pls provide me links which points on it. Thanks for any help
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
3answers
938 views

Xcode 3.2: Build & Analyze never finds any issues

I've used the Clang Static Analyzer from the command line before. I wanted to try Xcode's built-in version via Build & Analyze. I never get any negative results even though i specially prepared my ...
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' ...
2
votes
1answer
1k views

Clang static analyzer on Windows

Does anybody have any success running clang static analyzer on Windows? I have successfully built llvm and clang (using VS 2008). Running scan-build results in the following error: The getpwuid ...
2
votes
3answers
1k views

Is it wise to use Clang to start with?

I am just starting out with xcode and learning Objective-C & Cocoa, would it be helpful to swap the compiler in Xcode 3.2 to Clang for the enhanced error checking and static analyser. I am just ...
1
vote
2answers
43 views

How to get the scan-build static analyser to understand iOS ARC'd code

Hi I have installed the command line utility scan-build from http://clang-analyzer.llvm.org/scan-build.html. When I run this on my Xcode 4.2 project which uses ARC, I get loads of potential memory ...
1
vote
2answers
161 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
3answers
227 views

Xcode 4 Analyze does not detect a memory leak situation

I have this code in my iOS app: - (IBAction)cameraButtonPressed:(id)sender { if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera] == NO) { ...
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
111 views

Static Analyzer says I have a leak…why?

I think this code should be fine but Static Analyzer doesn't like it. I can't figure out why and was hoping that someone could help me understand. The code works fine, the analyzer result just bugs ...
1
vote
3answers
122 views

C# Code Analyzer for C, C#, C and Java

Please are there any tools available that will parse my source code to enumerate all class and function dependency for my project (C, C#, C or Java) and save it in doc, XML or any other format? ...
1
vote
1answer
646 views

Using an external Xcode Clang Static Analyzer binary, with additional checks

I’m using Xcode 3.2.4 and have setup the Clang Static Analyser feature to use a newer build of the binary, as detailed here: http://clang-analyzer.llvm.org/xcode.html (Basically using the ...
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
144 views

Why's the Build and Analyze command not finding obvious memory management errors?

For some reason, the Clang Static Analyzer in my Xcode doesn't complain about anything. I made big memory management mistakes to try it (alloc and no release), but it never finds them and doesn't ...
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 ...
1
vote
1answer
717 views

In Xcode 3.2 under iPhone-SDK 3.1, how do I avoid “Dead store” error from CLANG analyzer?

I just upgraded to Xcode 3.2 and am using the Build and Analyze feature to check old code for errors. While doing something I thought was innocuous, I get this error: "Dead store: Value stored to ...
0
votes
1answer
108 views

Clang Static Analyzer - Extending

I am new to using Clang and wanted to understand if it was possible to extend the existing functionality of the static code analyzer. Basically for now I want to add a check that will analyze code and ...
0
votes
3answers
140 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
148 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
178 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 ...
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 ...
0
votes
2answers
794 views

Clang Static Analyzer for xcode for dummies

Could somebody please help me get Clang up and running? (I don't have 3.2) I've followed numerous tutorials (basically every link off of this page ...
0
votes
3answers
191 views

Figuring Out Memory Leaks without Clang

I'm trying to see if I can find some leaks myself in Apple's TopSongs app. Can someone help me out in at least one and how to identify what is in the Leaks reports and how I can get an idea on finding ...
0
votes
1answer
188 views

Does Clang-LLVM work for iPhone?

I am currently using Xcode 3.2.1 for learning the iPhone SDK and was wondering if its possible to use the Clang-LLVM and the static-analyser to aid in debugging my code. Currently I am using the ...
0
votes
1answer
260 views

How to get this Apple Script for Clang Static Analyzer working with Xcode?

Here's a script where lots of people say it's good: http://allancraig.net/blog/?p=381 But I can't get it to work. What are the steps I have to do with the Xcode script editor, to run that script? I ...