mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-24 22:22:21 +00:00
Fix typo causing preamature termination of long headers
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@40065 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c6ead1b23b
commit
ead1505a3c
3 changed files with 12 additions and 1 deletions
|
@ -4103,7 +4103,7 @@ appendString(NSMutableData *m, NSUInteger offset, NSUInteger fold,
|
|||
*/
|
||||
[m appendBytes: ptr + pos length: next - pos];
|
||||
offset += next - pos;
|
||||
pos += next;
|
||||
pos = next;
|
||||
if (pos < len)
|
||||
{
|
||||
/* We have more text to output, so fold the line.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue