projects
/
idzebra-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a4d01d6
)
zebra_term_untrans handled non-existing index_type
author
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 24 Jan 2008 16:14:40 +0000
(16:14 +0000)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 24 Jan 2008 16:14:40 +0000
(16:14 +0000)
index/untrans.c
patch
|
blob
|
history
diff --git
a/index/untrans.c
b/index/untrans.c
index
904e5e5
..
0eb3ae5
100644
(file)
--- 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;