Skip to content

Commit

Permalink
Issue #3
Browse files Browse the repository at this point in the history
  • Loading branch information
jbanaszczyk committed May 4, 2019
1 parent 154fb25 commit 1e44c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/utf8support.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Decoder {
: pCnv(NULL), encodingName()
{
UErrorCode error = U_ZERO_ERROR;
pCnv = ucnv_open(NULL, &error);
pCnv = ucnv_open("utf-8", &error); // Issue #3
}
Decoder(const Decoder &rhs)
: pCnv(NULL), encodingName()
Expand Down

0 comments on commit 1e44c17

Please sign in to comment.