Commit 9e0178d5aacbedc715ac1cde4bffb70497ee6b3f

Authored by Perry Werneck
1 parent 5dfaf51c
Exists in master and in 1 other branch develop

Fixing error in "setfield" IPC call.

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
client/src/session/remote/set.cc
... ... @@ -51,7 +51,8 @@
51 51 .call()
52 52 .pop(rc);
53 53  
54   - chkResponse(rc);
  54 + if(rc < 0)
  55 + chkResponse(-rc);
55 56  
56 57 }
57 58  
... ...