(decode_eol): Fix bug of converting CRLF to LF.
This commit is contained in:
parent
626665b47b
commit
bfd9904870
1 changed files with 1 additions and 1 deletions
|
@ -1872,7 +1872,7 @@ decode_eol (coding, source, destination, src_bytes, dst_bytes, consumed)
|
|||
ONE_MORE_BYTE (c);
|
||||
if (c != '\n')
|
||||
*dst++ = '\r';
|
||||
|
||||
*dst++ = c;
|
||||
}
|
||||
else
|
||||
*dst++ = c;
|
||||
|
|
Loading…
Add table
Reference in a new issue