X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Frecord_conv.c;h=5edc28bdfdcd863a54c3806c2804701294d9dff2;hb=5ae2f74ba9b27bb7e926d5908471ac79371f7823;hp=4e69f43db81bb9e1d5500ef92c769acec670825d;hpb=0c46d2e66bdeea1600e700124a81a5d0a65d349e;p=yaz-moved-to-github.git diff --git a/src/record_conv.c b/src/record_conv.c index 4e69f43..5edc28b 100644 --- a/src/record_conv.c +++ b/src/record_conv.c @@ -194,6 +194,7 @@ static void *construct_xslt(const xmlNode *ptr, { wrbuf_printf(wr_error, "Element : " "attribute 'stylesheet' expected"); + nmem_destroy(nmem); return 0; } else @@ -208,6 +209,7 @@ static void *construct_xslt(const xmlNode *ptr, if (path) wrbuf_printf(wr_error, " with path '%s'", path); + nmem_destroy(nmem); return 0; } info->xsp_doc = xmlParseFile(fullpath); @@ -217,6 +219,7 @@ static void *construct_xslt(const xmlNode *ptr, " xml parse failed: %s", stylesheet, fullpath); if (path) wrbuf_printf(wr_error, " with path '%s'", path); + nmem_destroy(nmem); return 0; } /* need to copy this before passing it to the processor. It will @@ -627,7 +630,10 @@ int yaz_record_conv_opac_record(yaz_record_conv_t p, int ret = 0; struct yaz_record_conv_rule *r = p->rules; if (!r || r->type->construct != construct_marc) + { + wrbuf_puts(p->wr_error, "Expecting MARC rule as first rule for OPAC"); ret = -1; /* no marc rule so we can't do OPAC */ + } else { struct marc_info *mi = r->info;