From: Adam Dickmeiss Date: Thu, 24 Jan 2008 16:14:40 +0000 (+0000) Subject: zebra_term_untrans handled non-existing index_type X-Git-Tag: ZEBRA.2.0.26~9 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;ds=inline;h=29d5f346a6f02c3bfbc57bc778e3865c951fd2be;p=idzebra-moved-to-github.git zebra_term_untrans handled non-existing index_type --- diff --git a/index/untrans.c b/index/untrans.c index 904e5e5..0eb3ae5 100644 --- a/index/untrans.c +++ b/index/untrans.c @@ -1,4 +1,4 @@ -/* $Id: untrans.c,v 1.6 2007-12-13 11:09:20 adam Exp $ +/* $Id: untrans.c,v 1.7 2008-01-24 16:14:40 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -32,8 +32,14 @@ int zebra_term_untrans(ZebraHandle zh, const char *index_type, char *dst, const char *src) { zebra_map_t zm = zebra_map_get(zh->reg->zebra_maps, index_type); + if (!zm) + { + return -2; + } if (zebra_maps_is_icu(zm)) + { return -1; + } else { int len = 0;