Oh, no. It is really gdome issue:

  /usr/include/libxml2/libxml/tree.h

  82 /**
  83  * xmlBuffer:
  84  *
  85  * A buffer structure, this old construct is limited to 2GB and
  86  * is being deprecated, use API with xmlBuf instead
  87  */
  88 typedef struct _xmlBuffer xmlBuffer;
  89 typedef xmlBuffer *xmlBufferPtr;
  90 struct _xmlBuffer {
  91     xmlChar *content;       /* The buffer content UTF8 */
  92     unsigned int use;       /* The buffer size used */
  93     unsigned int size;      /* The buffer size */
  94     xmlBufferAllocationScheme alloc; /* The realloc method */
  95     xmlChar *contentIO;     /* in IO mode we may have a different base */
  96 };
  97
  98 /**
  99  * xmlBuf:
 100  *
 101  * A buffer structure, new one, the actual structure internals
are not public
 102  */
 103
 104 typedef struct _xmlBuf xmlBuf;
 105
 106 /**
 107  * xmlBufPtr:
 108  *
 109  * A pointer to a buffer structure, the actual structure internals are not
 110  * public
 111  */
 112
 113 typedef xmlBuf *xmlBufPtr;


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to