From: Adam Dickmeiss Date: Fri, 13 May 2011 10:18:04 +0000 (+0200) Subject: GFS: fail if CQL properties can not be opened X-Git-Tag: v4.2.0~14 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=dceeaf843f3bd4c87d667ed62fd4b5446d934cff;ds=sidebyside GFS: fail if CQL properties can not be opened --- diff --git a/src/statserv.c b/src/statserv.c index 487153e..a039251 100644 --- a/src/statserv.c +++ b/src/statserv.c @@ -418,9 +418,14 @@ static void xml_config_read(void) } else if (!strcmp((const char *) ptr->name, "cql2rpn")) { - gfs->cql_transform = cql_transform_open_fname( - nmem_dup_xml_content(gfs_nmem, ptr->children) - ); + char *name = nmem_dup_xml_content(gfs_nmem, ptr->children); + gfs->cql_transform = cql_transform_open_fname(name); + if (!gfs->cql_transform) + { + yaz_log(YLOG_FATAL|YLOG_ERRNO, + "open CQL transform file '%s'", name); + exit(1); + } } else if (!strcmp((const char *) ptr->name, "ccl2rpn")) {