diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-12-20 19:10:28 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-12-20 19:10:28 +0000 |
commit | c913257a1eb9b0fdcac33c1b45b309261048f761 (patch) | |
tree | cabe9ffbcceb441dba46626257eb463be03e002a /protocols/Steam/src/steam_messages.cpp | |
parent | c85f29701349a22dadca357c770296b7e8475db1 (diff) |
Steam: Various code improvements (as reported by Coverity analyser); version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@11544 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_messages.cpp')
-rw-r--r-- | protocols/Steam/src/steam_messages.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_messages.cpp b/protocols/Steam/src/steam_messages.cpp index 7e6e07c315..f330e5a3ab 100644 --- a/protocols/Steam/src/steam_messages.cpp +++ b/protocols/Steam/src/steam_messages.cpp @@ -25,7 +25,7 @@ void CSteamProto::OnMessageSent(const NETLIBHTTPREQUEST *response, void *arg) {
JSONROOT root(response->pData);
JSONNODE *node = json_get(root, "error");
- ptrA error(mir_utf8encodeW(json_as_string(node)));
+ ptrA error(mir_utf8encodeW(ptrT(json_as_string(node))));
if (lstrcmpiA(error, "OK") == 0)
result = true;
else
|