[Libs/cmm] Incorrect wrappers over iconv.obj #127
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
In the cmm library, which WebView uses, for example,
iconv_open()
is called incorrectly. For example,iconv()
andiconv_open()
have thestdcall
calling convention, but should becdecl
. In addition, they are passed in the wrong order, but it works: #126