Re: [xml] Possible 64-bit issues in xml 2.9.2
- From: Alex Bligh <alex alex org uk>
- To: Nick Wellnhofer <wellnhofer aevum de>
- Cc: "xml gnome org" <xml gnome org>
- Subject: Re: [xml] Possible 64-bit issues in xml 2.9.2
- Date: Wed, 11 Nov 2015 11:34:51 +0000
On 11 Nov 2015, at 11:00, Nick Wellnhofer <wellnhofer aevum de> wrote:
case XML_ELEMENT_NODE:
if (node2->type == XML_ELEMENT_NODE) {
if ((0 > (long) node1->content) && /* TODO: Would a != 0 suffice here? */
(0 > (long) node2->content) &&
The intent is not entirely clear but if these are supposed to be NULL checks
then they could easily give the wrong result.
Just to clarify: The values stored in node->content are actually integers used to speed up node
comparisons. See xmlXPathOrderDocElems:
In which case you probably want intptr_t and this macro:
— Macro: AC_TYPE_INTPTR_T
If stdint.h or inttypes.h defines the type intptr_t, define HAVE_INTPTR_T. Otherwise, define intptr_t to a
signed integer type wide enough to hold a pointer, if such a type exists.
--
Alex Bligh
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]