X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ficu_utf16.c;h=9274974de8135bc46ae641791d657abb24aeea6e;hb=a3e65bcd3250b107397675bc65b35b5939355025;hp=55766a210e9879ae03c4ad49fb2486bd0c212058;hpb=54bd147d353f7f340a48a9da5c6a568446223371;p=yaz-moved-to-github.git diff --git a/src/icu_utf16.c b/src/icu_utf16.c index 55766a2..9274974 100644 --- a/src/icu_utf16.c +++ b/src/icu_utf16.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data + * Copyright (C) 1995-2012 Index Data * See the file LICENSE for details. */ @@ -61,7 +61,7 @@ struct icu_buf_utf16 * icu_buf_utf16_resize(struct icu_buf_utf16 * buf16, if (!buf16) return 0; - if (capacity > 0) + if (capacity > 0) { if (0 == buf16->utf16) buf16->utf16 = (UChar *) xmalloc(sizeof(UChar) * capacity); @@ -79,13 +79,12 @@ struct icu_buf_utf16 * icu_buf_utf16_resize(struct icu_buf_utf16 * buf16, buf16->utf16_len = 0; buf16->utf16_cap = 0; } - return buf16; } struct icu_buf_utf16 * icu_buf_utf16_copy(struct icu_buf_utf16 * dest16, - struct icu_buf_utf16 * src16) + const struct icu_buf_utf16 * src16) { if (!dest16 || !src16 || dest16 == src16) return 0;