From: Adam Dickmeiss Date: Fri, 27 Oct 2006 11:02:50 +0000 (+0000) Subject: Change type to avoid problems with strict-aliasing rules X-Git-Tag: YAZ.2.1.38~7 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=0d6309b35855b9e9b8f09c4c75dcd71483c5da5f Change type to avoid problems with strict-aliasing rules --- diff --git a/util/yaz-xmlquery.c b/util/yaz-xmlquery.c index 3f673df..864df44 100644 --- a/util/yaz-xmlquery.c +++ b/util/yaz-xmlquery.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: yaz-xmlquery.c,v 1.4 2006-10-04 16:59:34 mike Exp $ + * $Id: yaz-xmlquery.c,v 1.5 2006-10-27 11:02:50 adam Exp $ */ #include @@ -62,10 +62,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) {