ObjFW  Check-in [05dbd482bf]

Overview
Comment:Minor style fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | unix-sockets
Files: files | file ages | folders
SHA3-256: 05dbd482bfde483241bab5174fbc0ad5778485c6f96c34c6e9df89af4eb04204
User & Date: js on 2021-04-25 20:25:37
Other Links: branch diff | manifest | tags
Context
2021-10-24
13:40
Merge trunk into branch "unix-sockets" check-in: 55aa600e97 user: js tags: unix-sockets
2021-04-25
20:25
Minor style fix check-in: 05dbd482bf user: js tags: unix-sockets
20:22
Merge trunk into branch "unix-sockets" check-in: fb40f7048d user: js tags: unix-sockets
Changes

Modified src/OFSocket.m from [a17f72fec0] to [25a9151924].

735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
		 * the path. So hash the path if we have one, otherwise the
		 * bytes.
		 */
		void *pool = objc_autoreleasePoolPush();
		OFString *path = OFSocketAddressUNIXPath(address);

		if (path != nil) {
			hash = [path hash];
			objc_autoreleasePoolPop(pool);
			return hash;
		}

		objc_autoreleasePoolPop(pool);

		for (socklen_t i = 0; i < address->length; i++)







|







735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
		 * the path. So hash the path if we have one, otherwise the
		 * bytes.
		 */
		void *pool = objc_autoreleasePoolPush();
		OFString *path = OFSocketAddressUNIXPath(address);

		if (path != nil) {
			hash = path.hash;
			objc_autoreleasePoolPop(pool);
			return hash;
		}

		objc_autoreleasePoolPop(pool);

		for (socklen_t i = 0; i < address->length; i++)