mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-29 08:31:13 +00:00
Fix incorrect error handling of call to mbrtowc. This is PR#13759. Leaving the bug open because (1) I'm not sure that we're correct here, only better than before, and (2) no tests
llvm-svn: 233012
This commit is contained in:
parent
6a7ee6f460
commit
c5a996f111
@ -1657,7 +1657,7 @@ codecvt<wchar_t, char, mbstate_t>::do_in(state_type& st,
|
||||
frm_nxt = frm;
|
||||
return frm_nxt == frm_end ? ok : partial;
|
||||
}
|
||||
if (n == 0)
|
||||
if (n == (size_t)-1)
|
||||
return error;
|
||||
to_nxt += n;
|
||||
if (to_nxt == to_end)
|
||||
|
Loading…
Reference in New Issue
Block a user