Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Oct 2014 18:11:28 +0100
From:      Koop Mast <kwm@rainbow-runner.nl>
To:        Glen Barber <gjb@FreeBSD.org>, Jung-uk Kim <jkim@FreeBSD.org>
Cc:        FreeBSD Documentation Engineering Team <doceng@FreeBSD.org>, freebsd-doc@FreeBSD.org, FreeBSD Gnome <freebsd-gnome@freebsd.org>
Subject:   Re: FreeBSD Home Page
Message-ID:  <54511FC0.4070707@rainbow-runner.nl>
In-Reply-To: <20141028160614.GD1206@hub.FreeBSD.org>
References:  <C73ECBFD-AAA9-421A-9FAB-799F57591604@yahoo.com> <20141023051037.GB1237@hub.FreeBSD.org> <20141023051531.GC1237@hub.FreeBSD.org> <5449485A.6000709@FreeBSD.org> <20141023185343.GA8981@hub.FreeBSD.org> <20141028160614.GD1206@hub.FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help

On 28-10-2014 17:06, Glen Barber wrote:
> On Thu, Oct 23, 2014 at 06:53:43PM +0000, Glen Barber wrote:
>> On Thu, Oct 23, 2014 at 02:26:34PM -0400, Jung-uk Kim wrote:
>>> On 2014-10-23 01:15:31 -0400, Glen Barber wrote:
>>>> [Move hackers@ to BCC to prevent further noise there, added
>>>> doceng@.]
>>>>
>>>> On Thu, Oct 23, 2014 at 05:10:37AM +0000, Glen Barber wrote:
>>>>> On Thu, Oct 23, 2014 at 12:41:59PM +0800, by via freebsd-hackers
>>>>> wrote:
>>>>>> freebsd.org home page seems strange with "Production" and
>>>>>> "Upcoming".
>>>>> Copying the proper list.
>>>>>
>>>> This is related to one of the recent textproc/libxml2 updates,
>>>> confirmed locally.  Either ports r371120 or r371269 is suspect
>>>> here.
>>> It seems the problem was fixed with the following upstream commit.
>>>
>>> https://git.gnome.org/browse/libxml2/commit/?id=72a46a519ce7326d9a00f0b6a7f2a8e958cd1675
>>>
>> I can confirm that this does resolve the issue.
>>
>> I have attached the patch to the port used to confirm.
>>
>> Glen
>>
>> Index: textproc/libxml2/files/patch-parser.c
>> ===================================================================
>> --- textproc/libxml2/files/patch-parser.c	(revision 371400)
>> +++ textproc/libxml2/files/patch-parser.c	(working copy)
>> @@ -16,6 +16,16 @@ diff --git a/parser.c b/parser.c
>>   index 1d93967..67c9dfd 100644
>>   --- parser.c
>>   +++ parser.c
>> +@@ -7235,7 +7235,8 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
>> +      * far more secure as the parser will only process data coming from
>> +      * the document entity by default.
>> +      */
>> +-    if ((ent->checked == 0) &&
>> ++    if (((ent->checked == 0) ||
>> ++         ((ent->children == NULL) && (ctxt->options & XML_PARSE_NOENT))) &&
>> +         ((ent->etype != XML_EXTERNAL_GENERAL_PARSED_ENTITY) ||
>> +          (ctxt->options & (XML_PARSE_NOENT | XML_PARSE_DTDVALID)))) {
>> + 	unsigned long oldnbent = ctxt->nbentities;
>>   @@ -14830,9 +14830,6 @@ xmlInitParser(void) {
>>    #ifdef LIBXML_XPATH_ENABLED
>>    	xmlXPathInit();
> Can someone from gnome@ please commit this?
>
> Glen
>
Done



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?54511FC0.4070707>