Overview
| Comment: | Fix a typo |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a653a058ce9f642454a1e6c4e9661ceb |
| User & Date: | js on 2024-04-03 02:34:28 |
| Other Links: | manifest | tags |
Context
|
2024-04-03
| ||
| 02:37 | Update README.md for the license change (check-in: 06aecbe734 user: js tags: trunk) | |
| 02:34 | Fix a typo (check-in: a653a058ce user: js tags: trunk) | |
| 02:16 | Change license to LGPLv3 only (check-in: 7413a728a7 user: js tags: trunk) | |
Changes
Modified src/OFFileIRIHandler.m from [595af81463] to [218769cb2b].
| ︙ | ︙ | |||
1707 1708 1709 1710 1711 1712 1713 | void *pool = objc_autoreleasePoolPush(); OFString *path = IRI.fileSystemRepresentation; OFStringEncoding encoding = [OFLocale encoding]; const char *cPath = [path cStringWithEncoding: encoding]; const char *cName = [name cStringWithEncoding: encoding]; size_t size = data.count * data.itemSize; | | | 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 |
void *pool = objc_autoreleasePoolPush();
OFString *path = IRI.fileSystemRepresentation;
OFStringEncoding encoding = [OFLocale encoding];
const char *cPath = [path cStringWithEncoding: encoding];
const char *cName = [name cStringWithEncoding: encoding];
size_t size = data.count * data.itemSize;
# if defined(OF_LINUX) || defined(OF_MACOS)
# if defined(OF_LINUX)
if (lsetxattr(cPath, cName, data.items, size, 0) != 0) {
# elif defined(OF_MACOS)
if (setxattr(cPath, cName, data.items, size, 0, XATTR_NOFOLLOW) != 0) {
# endif
int errNo = errno;
|
| ︙ | ︙ |