ObjOpenSSL  Check-in [f0aa4a913f]

Overview
Comment:Remove unused variable
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f0aa4a913f85d3dcf3e7f218f31fa30841375c0a7621dca8e1875593cf3004b1
User & Date: js on 2019-01-23 20:07:01
Other Links: manifest | tags
Context
2019-03-14
22:02
Use dot syntax check-in: ca772cd7fd user: js tags: trunk
2019-01-23
20:07
Remove unused variable check-in: f0aa4a913f user: js tags: trunk
2019-01-20
12:43
ObjOpenSSL.oc: Fix missing lib check-in: ad6527102e user: js tags: trunk
Changes

Modified src/SSLSocket.m from [ff87bb468f] to [b183119047].

355
356
357
358
359
360
361
362
363
364

365
366
367
368
369
370
371
355
356
357
358
359
360
361

362

363
364
365
366
367
368
369
370







-

-
+







}

- (void)asyncConnectToHost: (OFString *)host
		      port: (uint16_t)port
	       runLoopMode: (of_run_loop_mode_t)runLoopMode
{
	void *pool = objc_autoreleasePoolPush();
	SSLSocket_ConnectDelegate *connectDelegate;

	connectDelegate = [[[SSLSocket_ConnectDelegate alloc]
	[[[SSLSocket_ConnectDelegate alloc]
	    initWithSocket: self
		      host: host
		      port: port
		  delegate: _delegate] autorelease];
	[super asyncConnectToHost: host
			     port: port
		      runLoopMode: runLoopMode];