X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fyaz-xmlquery.c;h=b40ddaff80c14487a1a99bfcb6e6db90284938ee;hb=bc384649b00fed1e378ac3f67b8b5e4872892942;hp=66121834481210b273ce4db31a39ea9336b3a1c6;hpb=f403b05509aac2b9da65ecb9397d9452bd3a3aab;p=yaz-moved-to-github.git diff --git a/util/yaz-xmlquery.c b/util/yaz-xmlquery.c index 6612183..b40ddaf 100644 --- a/util/yaz-xmlquery.c +++ b/util/yaz-xmlquery.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2005, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: yaz-xmlquery.c,v 1.1 2006-02-23 10:40:59 adam Exp $ */ #include @@ -14,13 +12,13 @@ #include #include -#if HAVE_XML2 +#if YAZ_HAVE_XML2 #include #endif static char *prog = "yaz-xmlquery"; -#if HAVE_XML2 +#if YAZ_HAVE_XML2 void pqftoxmlquery(const char *pqf) { YAZ_PQF_Parser parser = yaz_pqf_create(); @@ -62,10 +60,10 @@ void pqftoxmlquery(const char *pqf) } else { - char *buf_out = 0; + xmlChar *buf_out = 0; int len_out = 0; - xmlDocDumpMemory(doc, (xmlChar **) &buf_out, &len_out); + xmlDocDumpMemory(doc, &buf_out, &len_out); if (!len_out || !buf_out) { @@ -117,8 +115,8 @@ void xmlquerytopqf(const char *xmlstr) { WRBUF w = wrbuf_alloc(); yaz_query_to_wrbuf(w, query); - printf("%s\n", wrbuf_buf(w)); - wrbuf_free(w, 1); + printf("%s\n", wrbuf_cstr(w)); + wrbuf_destroy(w); } odr_destroy(odr); xmlFreeDoc(doc); @@ -143,7 +141,8 @@ void xmlfiletopqf(const char *xmlfile) exit(1); } rewind(f); - xmlstr = xmalloc(sz); + xmlstr = (char *) xmalloc(sz+1); + xmlstr[sz] = '\0'; fread(xmlstr, sz, 1, f); fclose(f); @@ -152,7 +151,7 @@ void xmlfiletopqf(const char *xmlfile) } #endif -void usage() +void usage(void) { fprintf(stderr, "%s [-p pqf] [-x xmlfile]\n", prog); fprintf(stderr, " -p pqf reads pqf. write xml to stdout\n"); @@ -162,7 +161,7 @@ void usage() int main (int argc, char **argv) { -#if HAVE_XML2 +#if YAZ_HAVE_XML2 char *arg; int r; int active = 0;