Skip to content

Commit

Permalink
Merge pull request msgpack-rpc#63 from leonlee/master
Browse files Browse the repository at this point in the history
Fixed 'undefined variable exception' when running test case
  • Loading branch information
repeatedly committed Sep 7, 2012
2 parents fe269bc + b7edbb7 commit 1691290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/lib/Back.php
Expand Up @@ -145,7 +145,7 @@ public function serverSendObject($code, $sets, $errs)

public function serverRecvObject($recv)
{
$send = $this->msgpackDecode($recv);
$data = $this->msgpackDecode($recv);

if (count($data) != 4) {
throw new MessagePackRPC_Error_ProtocolError("Invalid message structure.");
Expand Down

0 comments on commit 1691290

Please sign in to comment.