Differences From Artifact [72f7071464]:
- File
src/OFHTTPClient.m
— part of check-in
[0ddaac3f5b]
at
2020-11-05 00:24:29
on branch trunk
— Avoid -[allocMemoryWithSize:] for temporary memory
-[allocMemoryWithSize:] has book keeping overhead that is unnecessary
for temporary memory. (user: js, size: 30272) [annotate] [blame] [check-ins using] [more...]
To Artifact [5174ef54a9]:
- File
src/OFHTTPClient.m
— part of check-in
[627511b032]
at
2020-11-14 12:23:55
on branch trunk
— Rename of_malloc and of_calloc
The new names should be more accurate. (user: js, size: 30271) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
511 512 513 514 515 516 517 | } lineC = line.UTF8String; if ((tmp = strchr(lineC, ':')) == NULL) @throw [OFInvalidServerReplyException exception]; | | | 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 |
}
lineC = line.UTF8String;
if ((tmp = strchr(lineC, ':')) == NULL)
@throw [OFInvalidServerReplyException exception];
keyC = of_alloc(tmp - lineC + 1, 1);
memcpy(keyC, lineC, tmp - lineC);
keyC[tmp - lineC] = '\0';
normalizeKey(keyC);
@try {
key = [OFString stringWithUTF8StringNoCopy: keyC
freeWhenDone: true];
|
| ︙ | ︙ |