From: Mike Taylor Date: Wed, 28 Mar 2007 16:35:47 +0000 (+0000) Subject: Explicitly initialise cqltrans to 0 X-Git-Tag: YAZ.before.OID.patch~3 X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;h=900aea38294d60d4cbf1153f480b27155d292c7a;hp=4cd3f359d12ddfecd1f112cb81235a70a67f8665;p=yaz-moved-to-github.git Explicitly initialise cqltrans to 0 --- diff --git a/client/client.c b/client/client.c index 31e6077..ab6f759 100644 --- a/client/client.c +++ b/client/client.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: client.c,v 1.330 2007-03-19 22:17:41 adam Exp $ + * $Id: client.c,v 1.331 2007-03-28 16:35:47 mike Exp $ */ /** \file client.c * \brief yaz-client program @@ -158,7 +158,7 @@ typedef enum { static QueryType queryType = QueryType_Prefix; static CCL_bibset bibset; /* CCL bibset handle */ -static cql_transform_t cqltrans; /* CQL context-set handle */ +static cql_transform_t cqltrans = 0; /* CQL context-set handle */ #if HAVE_READLINE_COMPLETION_OVER