php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #15440 quoted_printable_decode: bad CRLF test; tests for LFCR instead.
Submitted: 2002-02-07 22:37 UTC Modified: 2002-04-01 12:09 UTC
From: bird at anduin dot net Assigned:
Status: Closed Package: Strings related
PHP Version: 4.1.1 OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: bird at anduin dot net
New email:
PHP Version: OS:

 

 [2002-02-07 22:37 UTC] bird at anduin dot net
line 105 in ext/standard/quot_print.c:
                else if ( (str_in[i+k] == 10) && (str_in[i+k+1] == 13))
It should be:
                else if ( (str_in[i+k] == 13) && (str_in[i+k+1] == 10))

This bug breaks testcase ext/standard/tests/general_functions/002.phpt on OS/2 and most likely on windows too.

Might be on of the problems reported in #9498.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-04-01 12:09 UTC] kir@php.net
This bug has been fixed in CVS.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 15:01:29 2024 UTC