What language is this for?
Which rule?
S1767 - Pointers should not be cast to integral types
Are you using
SonarQube - I think it’s 8.x, will try to get precision on this from devops.
How can we reproduce the problem? Give us a self-contained snippet of code (formatted text, no screenshots)
@interface MyClass
@property (nonatomic, assign) CGContextRef renderedContext;
@end
@implementation MyClass
-(void)updateRenderedContext:(CGContextRef)newContext {
_renderedContext = newContext; // (1)
}
@end
Why do you believe it’s a false-positive/false-negative?
Both newContext
and _renderedContext
are the same CGContextRef
type.
Colin
(Colin)
February 22, 2023, 1:23pm
2
Hey there.
Thanks for the report. We won’t be able to comment on it further until we know exactly what version of SonarQube is being used.
We’re using 8.9.10 (build 61542)
Colin
(Colin)
March 21, 2023, 8:27am
4
Hey there.
Can you please upgrade to SonarQube v9.9 LTS and see if the false-positive persists? There have been efforts to suppress false-positives on this rule in the v9.x series.