Differences From Artifact [d6522c977d]:
- File utils/ofhttp/OFHTTP.m — part of check-in [eba39f1c9d] at 2017-11-22 00:47:40 on branch trunk — OF_APPLICATION_DELEGATE(): Verify conformance (user: js, size: 26337) [annotate] [blame] [check-ins using]
To Artifact [de5b9ca60c]:
- File
utils/ofhttp/OFHTTP.m
— part of check-in
[904d0f429b]
at
2017-12-27 20:40:20
on branch trunk
— of{http,zip}: Allow user database reading
This is required as they now use attributesOfItemAtPath:, which reads
the user database. (user: js, size: 26385) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
@try {
[sandbox setAllowsStdIO: true];
[sandbox setAllowsReadingFiles: true];
[sandbox setAllowsWritingFiles: true];
[sandbox setAllowsCreatingFiles: true];
[sandbox setAllowsIPSockets: true];
[sandbox setAllowsDNS: true];
[sandbox setAllowsTTY: true];
[OFApplication activateSandbox: sandbox];
} @finally {
[sandbox release];
}
#endif
| > | 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 |
@try {
[sandbox setAllowsStdIO: true];
[sandbox setAllowsReadingFiles: true];
[sandbox setAllowsWritingFiles: true];
[sandbox setAllowsCreatingFiles: true];
[sandbox setAllowsIPSockets: true];
[sandbox setAllowsDNS: true];
[sandbox setAllowsUserDatabaseReading: true];
[sandbox setAllowsTTY: true];
[OFApplication activateSandbox: sandbox];
} @finally {
[sandbox release];
}
#endif
|
| ︙ | ︙ |