X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Futf8.c;h=cf010283b030e00b02f2cb1d224fc5f4c58f0a28;hb=a65104203283ead15a6101f548107b95a450c7c9;hp=4647785b9da36fdb2492c15618568e85bf60cf91;hpb=7845dbb347426b7f216007a1109c3fe7000e5bc0;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/utf8.c b/src/src/utf8.c index 4647785b9..cf010283b 100644 --- a/src/src/utf8.c +++ b/src/src/utf8.c @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) Jeremy Harris 2015, 2016 */ +/* Copyright (c) Jeremy Harris 2015 - 2017 */ /* See the file NOTICE for conditions of use and distribution. */ @@ -97,8 +97,7 @@ string_domain_alabel_to_utf8(const uschar * alabel, uschar ** err) #ifdef SUPPORT_I18N_2008 const uschar * label; int sep = '.'; -uschar * s = NULL; -int size = 0, len = 0; +gstring * g = NULL; while (label = string_nextinlist(&alabel, &sep, NULL, 0)) if ( string_is_alabel(label) @@ -106,8 +105,8 @@ while (label = string_nextinlist(&alabel, &sep, NULL, 0)) ) return NULL; else - s = string_append_listele(s, &size, &len, '.', label); -return s; + g = string_append_listele(g, '.', label); +return string_from_gstring(g); #else