Re: What does "incomplete sequence" mean
"frank ernest" <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
> It means that gdb is trying to decode the bytes of the string according > to the "target-charset" setting, and the string ends with a sequence > that is incomplete according to the charset. > > You probably have UTF-8 as the target-charset, and in UTF-8, \302 is the > start of a 2-byte sequence, and so should not appear at the end of the > string. Thanks, I'll check that.