mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-04-04 00:20:38 +02:00
XQuartz: Silence some static analyzer warnings by annotating referencing counts
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
(cherry picked from commit 9da6c0918f)
This commit is contained in:
parent
de32ca3f24
commit
af520d6710
1 changed files with 13 additions and 0 deletions
|
|
@ -70,6 +70,18 @@ xpbproxy_run(void);
|
|||
static dispatch_queue_t eventTranslationQueue;
|
||||
#endif
|
||||
|
||||
#ifndef __has_feature
|
||||
#define __has_feature(x) 0
|
||||
#endif
|
||||
|
||||
#ifndef CF_RETURNS_RETAINED
|
||||
#if __has_feature(attribute_cf_returns_retained)
|
||||
#define CF_RETURNS_RETAINED __attribute__((cf_returns_retained))
|
||||
#else
|
||||
#define CF_RETURNS_RETAINED
|
||||
#endif
|
||||
#endif
|
||||
|
||||
extern Bool noTestExtensions;
|
||||
extern Bool noRenderExtension;
|
||||
extern BOOL serverRunning;
|
||||
|
|
@ -526,6 +538,7 @@ cfrelease(CFAllocatorRef a, const void *b)
|
|||
CFRelease(b);
|
||||
}
|
||||
|
||||
CF_RETURNS_RETAINED
|
||||
static CFMutableArrayRef
|
||||
nsarray_to_cfarray(NSArray *in)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue