ObjFW  Diff

Differences From Artifact [f50e1c393f]:

To Artifact [0b0b833434]:


467
468
469
470
471
472
473
474

475
476
477


478
479
480
481
482
483
484
467
468
469
470
471
472
473

474



475
476
477
478
479
480
481
482
483







-
+
-
-
-
+
+







	if (status == 200 && contentLengthHeader != nil &&
	    contentLength != bytesReceived)
		@throw [OFTruncatedDataException
		    exceptionWithClass: [self class]];

	[serverHeaders makeImmutable];

	result = [[OFHTTPRequestResult alloc]
	result = [[OFHTTPRequestResult alloc] initWithStatusCode: status
	    OF_initWithStatusCode: status
			  headers: serverHeaders
			     data: data];
							 headers: serverHeaders
							    data: data];

	objc_autoreleasePoolPop(pool);

	[result autorelease];

	if (status != 200)
		@throw [OFHTTPRequestFailedException