X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fcharconv.tcl;h=d57f2262d7bdab6764c8a7d96ce90194d0979fc4;hb=c6b8edd2312a4606cc014738266059a20e3b6e61;hp=4412c2a3438122af373ddce172b6f652ef8107d4;hpb=d940392c53c32ccf76fb287cc5b997b9e921a431;p=yaz-moved-to-github.git diff --git a/src/charconv.tcl b/src/charconv.tcl index 4412c2a..d57f226 100644 --- a/src/charconv.tcl +++ b/src/charconv.tcl @@ -37,19 +37,22 @@ proc preamble_trie {ofilehandle ifiles ofile} { static unsigned long lookup(struct yaz_iconv_trie **ptrs, int ptr, unsigned char *inp, size_t inbytesleft, size_t *no_read, int *combining, unsigned mask, int boffset) { - struct yaz_iconv_trie *t = (ptr > 0) ? ptrs[ptr-1] : 0; - if (!t || inbytesleft < 1) + struct yaz_iconv_trie *t = ptrs[ptr-1]; + if (inbytesleft < 1) return 0; if (t->dir) { size_t ch = (inp[0] & mask) + boffset; - unsigned long code = - lookup(ptrs, t->dir[ch].ptr, inp+1, inbytesleft-1, no_read, combining, mask, boffset); - if (code) + unsigned long code; + if (t->dir[ch].ptr) { - (*no_read)++; - return code; - } + code = lookup(ptrs, t->dir[ch].ptr, inp+1, inbytesleft-1, no_read, combining, mask, boffset); + if (code) + { + (*no_read)++; + return code; + } + } if (t->dir[ch].to) { code = t->dir[ch].to; @@ -414,7 +417,7 @@ if {![info exists ifiles]} { usage } -set ofilehandle [open $ofile w] +set ofilehandle [open ${ofile}.tmp w] preamble_trie $ofilehandle $ifiles $ofile foreach ifile $ifiles { @@ -422,4 +425,6 @@ foreach ifile $ifiles { } close $ofilehandle +file rename -force ${ofile}.tmp ${ofile} +