We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65d6370 commit 98957feCopy full SHA for 98957fe
clang/lib/Headers/ptrauth.h
@@ -383,7 +383,8 @@ typedef __UINTPTR_TYPE__ ptrauth_generic_signature_t;
383
(void)__old_data; \
384
(void)__new_key; \
385
(void)__new_data; \
386
- __value + *(int *)((char *)__value + __addend); \
+ const char *__value_tmp = (const char*) (__value); \
387
+ (void*) (__value_tmp + *(const int *)(__value_tmp + (__addend))); \
388
})
389
390
#define ptrauth_auth_function(__value, __old_key, __old_data) \
0 commit comments