From 3bacfdc8ea0d391a01daa9507d941574de5a97bb Mon Sep 17 00:00:00 2001 From: tomo lance miamoto Date: Mon, 30 Jul 2018 13:11:53 +0900 Subject: [PATCH] Modify return values --- tcpdi_parser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tcpdi_parser.php b/tcpdi_parser.php index 1e26664..dc370ff 100644 --- a/tcpdi_parser.php +++ b/tcpdi_parser.php @@ -721,8 +721,8 @@ protected function getRawObject($offset=0, $data=null) { $next = strcspn($data, "\r\n", $offset); if ($next > 0) { $offset += $next; - list($obj, $unused) = $this->getRawObject($offset, $data); - return $obj; + + return $this->getRawObject($offset, $data); } break; }