X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=zutil%2Fquery.c;h=a3b8338f34716e8928cb5ad98a87c35070e3f234;hb=94c77ca831e55b3dee31184347f25dd0583085d2;hp=eb5e5e653ee6ea20788d3c6afa266b723977a841;hpb=161ec45b40a3ab08e08946c9654ab6fea4604760;p=yaz-moved-to-github.git diff --git a/zutil/query.c b/zutil/query.c index eb5e5e6..a3b8338 100644 --- a/zutil/query.c +++ b/zutil/query.c @@ -1,30 +1,16 @@ /* - * Copyright (c) 1995, Index Data + * Copyright (c) 1995-2001, Index Data * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss - * - * $Log: query.c,v $ - * Revision 1.1 1999-06-08 10:10:16 adam - * New sub directory zutil. Moved YAZ Compiler to be part of YAZ tree. - * - * Revision 1.3 1996/01/02 11:46:56 quinn - * Changed 'operator' to 'roperator' to avoid C++ conflict. - * - * Revision 1.2 1995/05/16 08:51:14 quinn - * License, documentation, and memory fixes - * - * Revision 1.1 1995/04/10 10:28:47 quinn - * Added copy of CCL and MARC display - * * + * $Id: query.c,v 1.4 2001-11-13 23:00:43 adam Exp $ */ #include #include #include -#include -#include +#include +#include static Z_Complex *makecomplex(ODR o, char **buf); static Z_Operand *makesimple(ODR o, char **buf); @@ -61,8 +47,9 @@ static Z_Operand *makesimple(ODR o, char **buf) (*buf)++; r->which = Z_Operand_APT; r->u.attributesPlusTerm = t = odr_malloc(o, sizeof(*t)); - t->num_attributes = 0; - t->attributeList = 0; + t->attributes = odr_malloc(o, sizeof(*t)); + t->attributes->num_attributes = 0; + t->attributes->attributes = 0; t->term = odr_malloc(o, sizeof(*t->term)); t->term->which = Z_Term_general; t->term->u.general = odr_malloc(o, sizeof(Odr_oct));