[libxml2] Swicth the test program for characters to new input buffers



commit 145477d8ab5d6802529b1213220f108ad23d3827
Author: Daniel Veillard <veillard redhat com>
Date:   Mon Jul 16 14:59:29 2012 +0800

    Swicth the test program for characters to new input buffers
    
    it was manipulating the buffer content and structures directly
    this cleans it up

 testchar.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/testchar.c b/testchar.c
index 3bfd9c0..55821ab 100644
--- a/testchar.c
+++ b/testchar.c
@@ -10,6 +10,8 @@
 #include <libxml/parser.h>
 #include <libxml/parserInternals.h>
 
+#include "buf.h"
+
 int lastError;
 
 static void errorHandler(void *unused, xmlErrorPtr err) {
@@ -558,9 +560,9 @@ static void testCharRanges(void) {
     }
     input->filename = NULL;
     input->buf = buf;
-    input->base = input->buf->buffer->content;
-    input->cur = input->buf->buffer->content;
-    input->end = &input->buf->buffer->content[4];
+    input->cur =
+    input->base = xmlBufContent(input->buf->buffer);
+    input->end = input->base + 4;
     inputPush(ctxt, input);
 
     printf("testing char range: 1");



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]