Differences From Artifact [b21eb615c3]:
- File src/OFHTTPRequest.m — part of check-in [7f52d7f931] at 2011-04-22 14:56:53 on branch trunk — OFHTTPRequest: Normalize server header keys. (user: js, size: 9788) [annotate] [blame] [check-ins using]
To Artifact [97fcaf53fd]:
- File src/OFHTTPRequest.m — part of check-in [838246b066] at 2011-04-22 15:00:36 on branch trunk — OFHTTPRequest: Fix missing release of delegate. (user: js, size: 9813) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
}
- (void)dealloc
{
[URL release];
[queryString release];
[headers release];
[super dealloc];
}
- (void)setURL: (OFURL*)url
{
OF_SETTER(URL, url, YES, YES)
| > | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
}
- (void)dealloc
{
[URL release];
[queryString release];
[headers release];
[(id)delegate release];
[super dealloc];
}
- (void)setURL: (OFURL*)url
{
OF_SETTER(URL, url, YES, YES)
|
| ︙ | ︙ |