X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fyaz-xmlquery.c;h=b2dc5880a1723a4a3526bbf8de01350255a64aa9;hb=e8ac1e56929fe175624fb63e619c184b58ef63b9;hp=66121834481210b273ce4db31a39ea9336b3a1c6;hpb=f403b05509aac2b9da65ecb9397d9452bd3a3aab;p=yaz-moved-to-github.git diff --git a/util/yaz-xmlquery.c b/util/yaz-xmlquery.c index 6612183..b2dc588 100644 --- a/util/yaz-xmlquery.c +++ b/util/yaz-xmlquery.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: yaz-xmlquery.c,v 1.1 2006-02-23 10:40:59 adam Exp $ + * $Id: yaz-xmlquery.c,v 1.3 2006-07-06 10:17:55 adam Exp $ */ #include @@ -14,13 +14,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(); @@ -143,7 +143,8 @@ void xmlfiletopqf(const char *xmlfile) exit(1); } rewind(f); - xmlstr = xmalloc(sz); + xmlstr = xmalloc(sz+1); + xmlstr[sz] = '\0'; fread(xmlstr, sz, 1, f); fclose(f); @@ -162,7 +163,7 @@ void usage() int main (int argc, char **argv) { -#if HAVE_XML2 +#if YAZ_HAVE_XML2 char *arg; int r; int active = 0;