X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=util%2Fzebramap.c;h=8165026f2290858427985162d62a45383f570964;hp=49021281d7e61ce842629f1e5cfeb8476c048ba0;hb=a5c8c78e8671af863fc61b2ad8b24f92f827f7b2;hpb=6a0f9234f945bc4956e2bcef75f715661a9eba9a diff --git a/util/zebramap.c b/util/zebramap.c index 4902128..8165026 100644 --- a/util/zebramap.c +++ b/util/zebramap.c @@ -1,5 +1,5 @@ /* This file is part of the Zebra server. - Copyright (C) 1994-2009 Index Data + Copyright (C) 1994-2011 Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -17,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#if HAVE_CONFIG_H +#include +#endif #include #include #include @@ -698,6 +701,9 @@ int zebra_map_tokenize_next(zebra_map_t zm, int zebra_map_tokenize_start(zebra_map_t zm, const char *buf, size_t len) { +#if YAZ_HAVE_ICU + int ret; +#endif assert(zm->use_chain); wrbuf_rewind(zm->input_str); @@ -716,10 +722,9 @@ int zebra_map_tokenize_start(zebra_map_t zm, yaz_log(YLOG_LOG, "input %s", wrbuf_cstr(zm->print_str)); } - icu_chain_assign_cstr(zm->icu_chain, - wrbuf_cstr(zm->input_str), - &status); - if (!U_SUCCESS(status)) + ret = icu_chain_assign_cstr(zm->icu_chain, + wrbuf_cstr(zm->input_str), &status); + if (!ret && !U_SUCCESS(status)) { if (zm->debug) {