1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

Replace usage of get_utf8_char with g_utf8_get_char_validated.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4742 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-03-09 16:41:20 +00:00 committed by exg
parent 72930e0be3
commit fee983d9fc

View File

@ -555,18 +555,19 @@ void term_stop(void)
static int input_utf8(const unsigned char *buffer, int size, unichar *result)
{
const unsigned char *end = buffer;
unichar c = g_utf8_get_char_validated(buffer, size);
switch (get_utf8_char(&end, size, result)) {
case -2:
switch (c) {
case (unichar)-1:
/* not UTF8 - fallback to 8bit ascii */
*result = *buffer;
return 1;
case -1:
case (unichar)-2:
/* need more data */
return -1;
default:
return (int) (end-buffer)+1;
*result = c;
return g_utf8_skip[*buffer];
}
}