X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=util%2Fcharmap.c;h=1913a5f70ddea57f5cfce0c0aa8c61b81e94505c;hp=374c35f526c108cd5c88311cc6b12dfa3d5afe6e;hb=89d3a004b7c651fd5673abfc192e1472dc4d4197;hpb=918c8b1ec479083d82c390d5dceb4899654cb666 diff --git a/util/charmap.c b/util/charmap.c index 374c35f..1913a5f 100644 --- a/util/charmap.c +++ b/util/charmap.c @@ -1,5 +1,5 @@ -/* $Id: charmap.c,v 1.42 2006-09-21 20:22:35 adam Exp $ - Copyright (C) 1995-2006 +/* $Id: charmap.c,v 1.44 2007-01-15 15:10:26 adam Exp $ + Copyright (C) 1995-2007 Index Data ApS This file is part of the Zebra server. @@ -238,8 +238,11 @@ const char **chr_map_q_input(chrmaptab maptab, const char *chr_map_output(chrmaptab maptab, const char **from, int len) { unsigned char c = ** (unsigned char **) from; - (*from)++; - return (const char*) maptab->output[c]; + const char *out = (const char*) maptab->output[c]; + + if (out) + (*from)++; + return out; } static int zebra_ucs4_strlen(ucs4_t *s)