mirror of
https://github.com/osmarks/ngircd.git
synced 2025-03-01 07:20:00 +00:00
CHARCONV: Fix handling conversion errors
Don't overwrite already converted text!
This commit is contained in:
parent
ccc9e1baa4
commit
abf280d5bd
@ -125,7 +125,7 @@ Convert_Message(iconv_t Handle, char *Message)
|
|||||||
if (iconv(Handle, &Message, &in_left, &out, &out_left) == (size_t)(-1)) {
|
if (iconv(Handle, &Message, &in_left, &out, &out_left) == (size_t)(-1)) {
|
||||||
/* An error occurred! */
|
/* An error occurred! */
|
||||||
LogDebug("Error converting message encoding!");
|
LogDebug("Error converting message encoding!");
|
||||||
strlcpy(Encoding_Buffer, Message, sizeof(Encoding_Buffer));
|
strlcpy(out, Message, sizeof(Encoding_Buffer));
|
||||||
iconv(Handle, NULL, NULL, NULL, NULL);
|
iconv(Handle, NULL, NULL, NULL, NULL);
|
||||||
} else
|
} else
|
||||||
*out = '\0';
|
*out = '\0';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user