mirror of https://github.com/axmolengine/axmol.git
Merge pull request #8695 from cocoscodeide/v3
Windows runtime response uncorrect
This commit is contained in:
commit
fe4c45061e
|
@ -1032,7 +1032,7 @@ public:
|
||||||
dReplyParse.Accept(writer);
|
dReplyParse.Accept(writer);
|
||||||
string msgContent = buffer.GetString();
|
string msgContent = buffer.GetString();
|
||||||
char msgLength[64] = {0x1, 0};
|
char msgLength[64] = {0x1, 0};
|
||||||
sprintf(msgLength + 1, "%zu:", msgContent.size());
|
sprintf(msgLength + 1, "%d:", msgContent.size());
|
||||||
|
|
||||||
string msg(msgLength + msgContent);
|
string msg(msgLength + msgContent);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue