mailinfo: fix 'fatal: cannot convert from utf-8 to utf-8'
For some reason, I got this error message. Maybe it does not make sense, but then we should not really try to convert the text when it is not necessary. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
a781785d8f
commit
7296096c9d
@ -529,6 +529,8 @@ static void convert_to_utf8(char *line, const char *charset)
|
||||
return;
|
||||
}
|
||||
|
||||
if (!strcmp(metainfo_charset, charset))
|
||||
return;
|
||||
out = reencode_string(line, metainfo_charset, charset);
|
||||
if (!out)
|
||||
die("cannot convert from %s to %s\n",
|
||||
|
Loading…
Reference in New Issue
Block a user