Closed
Bug 370
Opened 27 years ago
Closed 23 years ago
Cant parse PICS labels in HTTP headers - fix available
Categories
(SeaMonkey :: General, defect, P3)
Tracking
(Not tracked)
VERIFIED
WONTFIX
M15
People
(Reporter: pchek, Assigned: neeti)
Details
Created by Paul Chek (pchek@ziplink.net) on Monday, May 18, 1998 6:58:36 PM PDT
Additional Details :
CSParse_targetParser where I found:
/* changed by montulli@netscape.com 11/29/97
* if (HTChunk_size(pCSParse->token)) {
* HTChunk_terminate(pCSParse->token);
* token = HTChunk_data(pCSParse->token);
* }
*/
if(HTChunk_data(pCSParse->token))
{
HTChunk_terminate(pCSParse->token);
token = HTChunk_data(pCSParse->token);
}
At the closing paren for the label the call to
HTChunk_data returns true and sets the token to an EMPTY
string with a size of 1. So the code winds through the
parsing again, gets confused and throws an error. At
the same point HTChunk_size returns false, so a new
EMPTY token is not set and it successfully parses the
PICS label. After restoring the original code the PICS
label parses correctly in the HTTP header.
Updated•26 years ago
|
Component: Berkeley DB → Networking Library
Product: MozillaClassic → Browser
Version: 1998-03-31 → other
Comment 3•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
Component: Networking Library → PICS
Target Milestone: M8 → M15
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → LATER
Comment 5•25 years ago
|
||
PICS is not scheduled for inclusion in Seamonkey. Verifying as LATER.
Status: RESOLVED → VERIFIED
Comment 7•23 years ago
|
||
PICS has been removed. WONTFIX.
Status: REOPENED → RESOLVED
Closed: 25 years ago → 23 years ago
Resolution: --- → WONTFIX
Updated•22 years ago
|
Component: PICS → Browser-General
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•