ObjFW  Diff

Differences From Artifact [6eb6a3c457]:

To Artifact [f021cb30da]:


80
81
82
83
84
85
86

87
88
89
90
91
92
93
	int exitStatus = 0;

#ifdef OF_HAVE_SANDBOX
	OFSandbox *sandbox = [[OFSandbox alloc] init];
	@try {
		[sandbox setAllowsStdIO: true];
		[sandbox setAllowsReadingFiles: true];


		[OFApplication activateSandbox: sandbox];
	} @finally {
		[sandbox release];
	}
#endif








>







80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
	int exitStatus = 0;

#ifdef OF_HAVE_SANDBOX
	OFSandbox *sandbox = [[OFSandbox alloc] init];
	@try {
		[sandbox setAllowsStdIO: true];
		[sandbox setAllowsReadingFiles: true];
		[sandbox setAllowsUserDatabaseReading: true];

		[OFApplication activateSandbox: sandbox];
	} @finally {
		[sandbox release];
	}
#endif