X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fyaz-xmlquery.c;h=b40ddaff80c14487a1a99bfcb6e6db90284938ee;hb=bc384649b00fed1e378ac3f67b8b5e4872892942;hp=39000fc1d46857333a49d16c39776be810565907;hpb=8d691989077a0addcbd840d769dce6700f3d9622;p=yaz-moved-to-github.git diff --git a/util/yaz-xmlquery.c b/util/yaz-xmlquery.c index 39000fc..b40ddaf 100644 --- a/util/yaz-xmlquery.c +++ b/util/yaz-xmlquery.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, 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.6 2007-01-03 08:42:16 adam Exp $ */ #include @@ -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,7 @@ void xmlfiletopqf(const char *xmlfile) exit(1); } rewind(f); - xmlstr = xmalloc(sz+1); + xmlstr = (char *) xmalloc(sz+1); xmlstr[sz] = '\0'; fread(xmlstr, sz, 1, f); fclose(f);