aboutsummaryrefslogtreecommitdiff
path: root/php
diff options
context:
space:
mode:
authorurfinjuezz <pcmaniac@inbox.ru>2018-04-10 00:14:31 +0300
committerPaul Yang <TeBoring@users.noreply.github.com>2018-04-09 14:14:31 -0700
commitd7d863ea077690954494fba168f5aba198a8f41c (patch)
treed4a6c6aa0813f51ac93c98e239dcbad4ca484a03 /php
parent13e627ad691f7645d03c7552ac469c2988397200 (diff)
downloadprotobuf-d7d863ea077690954494fba168f5aba198a8f41c.tar.gz
protobuf-d7d863ea077690954494fba168f5aba198a8f41c.tar.bz2
protobuf-d7d863ea077690954494fba168f5aba198a8f41c.zip
fix json_decode call parameters (#4381)
Diffstat (limited to 'php')
-rw-r--r--php/src/Google/Protobuf/Internal/Message.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/php/src/Google/Protobuf/Internal/Message.php b/php/src/Google/Protobuf/Internal/Message.php
index b7f83c57..04ee1c34 100644
--- a/php/src/Google/Protobuf/Internal/Message.php
+++ b/php/src/Google/Protobuf/Internal/Message.php
@@ -1104,7 +1104,7 @@ class Message
*/
public function parseFromJsonStream($input)
{
- $array = json_decode($input->getData(), JSON_BIGINT_AS_STRING);
+ $array = json_decode($input->getData(), true, 512, JSON_BIGINT_AS_STRING);
if (is_null($array)) {
throw new GPBDecodeException(
"Cannot decode json string.");