fixing tio
This commit is contained in:
parent
71aed8062f
commit
fdf56f1c40
@ -54,6 +54,8 @@ ase_ssize_t ase_tio_getc (ase_tio_t* tio, ase_char_t* c)
|
|||||||
curc = tio->inbuf[tio->inbuf_curp++];
|
curc = tio->inbuf[tio->inbuf_curp++];
|
||||||
#else
|
#else
|
||||||
left = tio->inbuf_len - tio->inbuf_curp;
|
left = tio->inbuf_len - tio->inbuf_curp;
|
||||||
|
|
||||||
|
#if 0
|
||||||
seqlen = ase_mblen (tio->inbuf[tio->inbuf_curp], left);
|
seqlen = ase_mblen (tio->inbuf[tio->inbuf_curp], left);
|
||||||
if (seqlen == 0)
|
if (seqlen == 0)
|
||||||
{
|
{
|
||||||
@ -97,6 +99,26 @@ ase_ssize_t ase_tio_getc (ase_tio_t* tio, ase_char_t* c)
|
|||||||
}
|
}
|
||||||
goto getc_conv;
|
goto getc_conv;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
n = ase_mbtowc (&tio->inbuf[tio->inbuf_curp], left, &curc);
|
||||||
|
if (n == 0)
|
||||||
|
{
|
||||||
|
/* illegal sequence */
|
||||||
|
tio->inbuf_curp++; /* skip one byte */
|
||||||
|
tio->errnum = ASE_TIO_EILSEQ;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (n > left)
|
||||||
|
{
|
||||||
|
/* incomplete sequence */
|
||||||
|
if (tio->inbuf_curp > 0)
|
||||||
|
{
|
||||||
|
ASE_MEMCPY (tio->inbuf, &tio->inbuf[tio->inbuf_curp], left);
|
||||||
|
tio->inbuf_curp = 0;
|
||||||
|
tio->inbuf_len = left;
|
||||||
|
}
|
||||||
|
goto getc_conv;
|
||||||
|
}
|
||||||
|
|
||||||
tio->inbuf_curp += n;
|
tio->inbuf_curp += n;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user