Browse Source

gdb/

* charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
	characters.
binutils-2_21-branch
Jan Kratochvil 16 years ago
parent
commit
1558ab4ce7
  1. 5
      gdb/ChangeLog
  2. 9
      gdb/charset.c

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2010-09-16 Jan Kratochvil <jan.kratochvil@redhat.com>
* charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
characters.
2010-09-16 Phil Muldoon <pmuldoon@redhat.com>
PR mi/11407

9
gdb/charset.c

@ -648,8 +648,13 @@ wchar_iterate (struct wchar_iterator *iter,
switch (errno)
{
case EILSEQ:
/* Invalid input sequence. Skip it, and let the caller
know about it. */
/* Invalid input sequence. We still might have converted a
character; if so, return it. */
if (out_avail < out_request * sizeof (gdb_wchar_t))
break;
/* Otherwise skip the first invalid character, and let the
caller know about it. */
*out_result = wchar_iterate_invalid;
*ptr = iter->input;
*len = iter->width;

Loading…
Cancel
Save