You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In "wstr_to_utf8buf" function, memory_buf_t 's size is a const value of 250, (wstr_size+1)*2 is less than 250, so there is no resizing of the result_size. In next WideCharToMultiByte call, this step went wrong.The last error is ERROR_INSUFFICIENT_BUFFER(122)(0x7A).
My test string is"OnPlayerStateChanged:state not changed 〈1〉叶心音的父亲遭人陷害入狱,男友不救反而出国,反而被他弟弟陆景霄救下。可她不知道就是男友陷害的父亲,而自己却已经爱上男友的弟弟!《总裁的金丝雀》,2,1", and can reproduce of this issue.
The text was updated successfully, but these errors were encountered:
In "wstr_to_utf8buf" function, memory_buf_t 's size is a const value of 250, (wstr_size+1)*2 is less than 250, so there is no resizing of the result_size. In next WideCharToMultiByte call, this step went wrong.The last error is ERROR_INSUFFICIENT_BUFFER(122)(0x7A).
My test string is"OnPlayerStateChanged:state not changed 〈1〉叶心音的父亲遭人陷害入狱,男友不救反而出国,反而被他弟弟陆景霄救下。可她不知道就是男友陷害的父亲,而自己却已经爱上男友的弟弟!《总裁的金丝雀》,2,1", and can reproduce of this issue.
The text was updated successfully, but these errors were encountered: