fixed a bug in recode when target is NULL and really use the recoded string for printing

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4042 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Valentin Batz 2005-10-16 11:16:33 +00:00 committed by vb
commit 0b8a23ad63
2 changed files with 4 additions and 4 deletions

View file

@ -88,7 +88,7 @@ char *recode_in(const SERVER_REC *server, const char *str, const char *target)
str_is_utf8 = g_utf8_validate(str, len, NULL);
translit = settings_get_bool("recode_transliterate");
if (server != NULL)
if (server != NULL && target != NULL)
tagtarget = server->tag == NULL ? NULL :
g_strdup_printf("%s/%s", server->tag, target);
if (tagtarget != NULL)
@ -154,7 +154,7 @@ char *recode_out(const SERVER_REC *server, const char *str, const char *target)
char *translit_to = NULL;
char *tagtarget = NULL;
if (server != NULL)
if (server != NULL && target != NULL)
tagtarget = server->tag == NULL ? NULL :
g_strdup_printf("%s/%s", server->tag, target);
if (tagtarget != NULL)