From dceeaf843f3bd4c87d667ed62fd4b5446d934cff Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 13 May 2011 12:18:04 +0200 Subject: [PATCH] GFS: fail if CQL properties can not be opened --- src/statserv.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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")) { -- 1.7.10.4