ObjFW  Diff

Differences From Artifact [366a242dd0]:

To Artifact [d943af9714]:


60
61
62
63
64
65
66


67

68
69

70
71
72
73
74
75
76
						      capacity: 1];
			[data increaseCountBy: 1];
			[_arguments addObject: data];
		}

		typeEncoding = [_methodSignature methodReturnType];
		typeSize = of_sizeof_type_encoding(typeEncoding);


		_returnValue = [[OFMutableData alloc] initWithItemSize: typeSize

							      capacity: 1];
		[_returnValue increaseCountBy: 1];


		objc_autoreleasePoolPop(pool);
	} @catch (id e) {
		[self release];
		@throw e;
	}








>
>
|
>
|
|
>







60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
						      capacity: 1];
			[data increaseCountBy: 1];
			[_arguments addObject: data];
		}

		typeEncoding = [_methodSignature methodReturnType];
		typeSize = of_sizeof_type_encoding(typeEncoding);

		if (typeSize > 0) {
			_returnValue = [[OFMutableData alloc]
			    initWithItemSize: typeSize
				    capacity: 1];
			[_returnValue increaseCountBy: 1];
		}

		objc_autoreleasePoolPop(pool);
	} @catch (id e) {
		[self release];
		@throw e;
	}