ObjFW  Diff

Differences From Artifact [5b45773966]:

To Artifact [2a9dc1d700]:


305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
		OFTimer *timer;

		[s connectToHost: host
			    port: port];

		timer = [OFTimer timerWithTimeInterval: 0
					       repeats: NO
						 block: ^ {
			[connectThread join];
			block(s);
		}];
		[runLoop addTimer: timer];

		objc_autoreleasePoolPop(pool2);








|







305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
		OFTimer *timer;

		[s connectToHost: host
			    port: port];

		timer = [OFTimer timerWithTimeInterval: 0
					       repeats: NO
						 block: ^ (OFTimer *unused) {
			[connectThread join];
			block(s);
		}];
		[runLoop addTimer: timer];

		objc_autoreleasePoolPop(pool2);