From: Adam Dickmeiss Date: Sun, 7 May 2006 14:31:30 +0000 (+0000) Subject: Initialize username and password in yaz_srw_codec. X-Git-Tag: YAZ.2.1.20~74 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=a1c7e0185783d67c7d6022ae7d70dd890b7c0309 Initialize username and password in yaz_srw_codec. --- diff --git a/src/srw.c b/src/srw.c index 406af9f..958a85b 100644 --- a/src/srw.c +++ b/src/srw.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: srw.c,v 1.44 2006-03-01 22:33:06 adam Exp $ + * $Id: srw.c,v 1.45 2006-05-07 14:31:30 adam Exp $ */ /** * \file srw.c @@ -541,6 +541,8 @@ int yaz_srw_codec(ODR o, void * vptr, Z_SRW_PDU **handler_data, *p = (Z_SRW_PDU *) odr_malloc(o, sizeof(**p)); (*p)->srw_version = odr_strdup(o, "1.1"); + (*p)->username = 0; + (*p)->password = 0; if (!xmlStrcmp(method->name, BAD_CAST "searchRetrieveRequest")) {