The Clang Static Analyzer is an open source source code analysis tool which find bugs in C and Objective-C programs.

learn more… | top users | synonyms

1
vote
1answer
57 views

ARC: Analyzer warnings with Objective-C code using core foundation

Using the analyzer on some Objective-C | Cocoa / Core Foundation code, I got a few error that I can't fix because I don't understand them. Error #1: In an Objective-C class header, I declare this ...
0
votes
0answers
11 views

Is there a web based code browser for clang static analyzer?

Specifically, I'd like it to be similar to opengrok, but using clang instead of ctags. Is there any such tool out there ?
0
votes
1answer
43 views

Clang Analyzer false positive or overflow?

Below is the simplification of some code of ours which seems like it demonstrates a bug in the clang analyzer, though it's possible there's a real bug in our code. typedef enum { value1 = ...
1
vote
1answer
46 views

An obvious leak but clang static analyzer didnot detect, Why?

I wrote some code like this, - (NSString*) caleSignParam:(NSMutableArray*)postData { NSMutableArray* keyArray = [[NSMutableArray alloc] initWithCapacity:50]; ...... NSArray* sortedKeys ...
-1
votes
2answers
58 views

Why do I have to call CFRelease after __bridge_transfer?

CFArrayRef refAllPeople = ABAddressBookCopyArrayOfAllPeople( addressBook ); NSArray * arPeople = (__bridge_transfer NSArray*)(refAllPeople); When I analyze it says potential memory leak. Let me try ...
0
votes
0answers
28 views

ASTContext Clang Visual Studio 2010

I write parser for C++ code using Clang in VS2010. I found some examples, but its written using old version of CLang. I want to create ASTContext and my own DeclVisitor for parsing source file. But I ...
2
votes
2answers
45 views

What sort of bugs does the “Misuse of Keychain Services API” analysis find?

Xcode 4.6 has a build setting labeled “Misuse of Keychain Services API”, a.k.a. CLANG_ANALYZER_SECURITY_KEYCHAIN_API. The Quick Help is unhelpful: Check for misuse of Keychain Services API. So, ...
0
votes
2answers
95 views

memory leaks issues in ios/objective c

i am developing the ios app and now want to test it for memory leaks, i have used the clang static analyzer and its giving me this bug report -(void)pass { printf("reading plist info"); // ...
4
votes
2answers
182 views

the right operand of '-' is a garbage value

I am using static analyzer for the first time and having difficulty to figure out the arrows. After looking some similar questions on S.O, I think the problem is the CGSize size is nil value but I am ...
3
votes
1answer
173 views

Clang static analyzer warning “Null pointer argument in call to CFRelease”

In Xcode 4.6, the clang static analyzer warns me about a "Null pointer argument in call to CFRelease". Here's a screenshot of the analyzer warning: And here's the code in case you want to copy ...
1
vote
0answers
44 views

Getting HTML output from Xcode's built-in static analysis

When I use the Build & Analyze option in Xcode I see a very useful visual output integrated into the IDE, showing code paths, memory leaks, dead-stores, etc. In Xcode there is a build setting ...
0
votes
0answers
47 views

how to generate human readable intermidiat code by llvm

I want to use clang to print out the abstract syntax tree in a human readable, do not want the binary bytecode one. I have used: ast-print ast-dump but they are providing non-readable code.. ...
0
votes
1answer
43 views

How to find a work-around when Xcode analyzer finds issues but does not show them in the files?

I'm having trouble with Xcode 4.5.2's analyzer. It is able to find issues: But, while the issues are displayed on the top bar: , the issues are not shown inside the file editor. Without this ...
1
vote
1answer
400 views

Vera++ Rules Implementaion

Please go thorough if anyone has knowledge about Vera++ Or Static Analyser. Can anyone please guide me little bit how can i implement complex C++ rules verification machine as a static analyzer. I ...
4
votes
0answers
140 views

clang scan-build reports with compiler warnings?

clang's scan-build driver for the static analyzer generates pretty html reports. But these only contain the issues the analyzer finds. Is there way to generate the same kind of reports for warnings ...
1
vote
0answers
183 views

Ran out of registers during register allocation

I just updated to Xcode 4.5.1. Now when I 'Analyze' my code, I get this error. Please note that it compiles and runs just fine. Any idea why this is? Updated 10/25 Actually, my code compiles and ...
2
votes
2answers
192 views

How can clang warn me if I fail to initialize a variable while using ARC?

I forgot to initialize a local variable, and I got no warning when I used it. Since I'm using ARC, the variable was initialized to nil, so no harm was done, but I still want a warning when I used an ...
0
votes
1answer
78 views

Potential leak using ABRecord and ARC

I have this code: - (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)personRecord ...
2
votes
3answers
213 views

Failing compilation if return value is unused for a certain type

I would like to make compilation fail for some function call but not others. The function call that I want to fail are those that do not handle return values when the value is of a certain type. In ...
0
votes
0answers
27 views

Clang potential leak warning on creation of window controller

At times I create and show an instance of a subclass of NSWindowController. When the window eventually gets closed, the controller releases or autoreleases itself, so it's not a leak. But the Clang ...
0
votes
1answer
58 views

Clang scan-build is not picking up -fno-objc-arc flag on non-ARC'd files

Hi I have an XCode project which is ARCd but uses some 3rd party (AFNetworking) classes which are not ARCd. I have specified the -fno-objc-arc flag against these files however when I run scan-build I ...
3
votes
1answer
293 views

Clang static analyzer and continuous integration?

The Clang static analyzer has proved much more reliable than PC-Lint and other Lint variants and similar software in picking up actual issues (not surprisingly, when reading the background). The ...
0
votes
1answer
140 views

How to tell ccc-analyzer (C static analyzer in clang) that a function cannot return

I am currently using ccc-analyzer by means of static-build to analyze our code base. I am using a recent build I made from the Git mirror. Now in PC-Lint I am able to tell Lint whenever a function ...
2
votes
2answers
143 views

Static analysis and the “create rule”

I want to add a category on NSBezierPath to return a CGPathRef for the path. Since this is a core foundation object, I cannot autorelease it, and the caller of the method is responsible for releasing ...
1
vote
1answer
126 views

Analyzer warnings about incorrect decrement

I am getting a static analyzer warning about some CGImageRef objects. The warning is "Incorrect decrement of the reference count of an object that is not owned at this point by the caller." However, ...
2
votes
2answers
144 views

Memory leak false positive

I have a simple method in my model to create a NSDictionary object containing its properties. Unfortunately this method is seen by "Analyse" to be leaking memory : Potential memory leak of an object ...
2
votes
0answers
128 views

why static analyzer is not showing a leak?

Here is a piece of code which i have in my source file. the memory management says to add a release and nil if you have a retain in the property. I am not doing it and when i run the static analyzer ...
1
vote
2answers
384 views

init method and “Object with a +0 retain count returned to caller where a +1 (owning) retain count is expected” - false positive?

First of all: I understand, why this warning is existing, I just can't explain myself, why it is triggered under these circumstances. The official Cocoa memory management policy is as following: "You ...
3
votes
2answers
234 views

silence a compiler warning about releasing a CGMutablePathRef object

I have enabled the static analyzer, but it is telling me that at the end of that execution path that object didn't get released, hence possibly causing a memory leak. I am however passing that ...
0
votes
1answer
239 views

iOS App Memory Warnings

I have about 500+ memory warnings after running the static analyzer. Is this something I should be concerned about and spend time fixing or will it really not help improve app crashes? Thanks!
1
vote
2answers
509 views

Null pointer in CFRelease (told by static anylizer)

I got this code: - (void)saveImageWithData:(NSData*)jpeg andDictionary:(NSDictionary*)dicRef andName:(NSString*)name { self.capturedImageName = name; self.dict = dicRef; ...
4
votes
1answer
865 views

How can I make Clang's “scan-build” work with SCons?

I've got a project built with SCons and I'm trying to use the Clang Static Analyzer to analyze the code. However, when running scan-build scons SCons seems to ignore the settings introduced by ...
4
votes
3answers
249 views

Is it good practice to initialise a variable to nil?

Is it good practice to initialize variable to nil ? I'm asking that because when I run the analyzer on my project I get a warning. NSString *q; if(sqlite3_prepare_v2(database, [query ...
1
vote
2answers
405 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
673 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 ...
4
votes
1answer
903 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 ...
5
votes
1answer
746 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 ...
3
votes
3answers
3k 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 ...
3
votes
2answers
1k 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, ...
3
votes
1answer
755 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
196 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
298 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
367 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 ...
1
vote
3answers
379 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) { ...
3
votes
0answers
383 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 ...
5
votes
1answer
874 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 ...
0
votes
3answers
206 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 ...
7
votes
1answer
512 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] ...
0
votes
2answers
248 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 ...
22
votes
3answers
4k 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?

1 2