this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add stub for sandbox_check_by_audit_token

+7
+7
src/sandbox/sandbox.c
··· 4 4 #include <stdlib.h> 5 5 #include <stdio.h> 6 6 #include <sys/types.h> 7 + #include <mach/message.h> 7 8 8 9 // DUMMY implementation 9 10 const enum sandbox_filter_type SANDBOX_CHECK_NO_REPORT = SANDBOX_FILTER_NONE; ··· 146 147 int rootless_allows_task_for_pid(pid_t pid) { 147 148 return 1; 148 149 } 150 + 151 + int sandbox_check_by_audit_token(audit_token_t tok, const char* operation, enum sandbox_filter_type filt, ...) { 152 + // technically unimplemented 153 + // just return 0 as an indiciation that whatever operation the caller asked about is allowed 154 + return 0; 155 + };