Merge pull request #6697 from annando/memory-jsonld

Avoid memory issue in exception of JSON-LD parser
This commit is contained in:
Tobias Diekershoff 2019-02-19 09:40:01 +01:00 committed by GitHub
commit 1df19d3553
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class JsonLD
}
catch (Exception $e) {
$normalized = false;
Logger::log('normalise error:' . print_r($e, true), Logger::DEBUG);
Logger::log('normalise error:' . substr(print_r($e, true), 0, 10000), Logger::DEBUG);
}
return $normalized;
@ -115,7 +115,7 @@ class JsonLD
}
catch (Exception $e) {
$compacted = false;
Logger::log('compacting error:' . print_r($e, true), Logger::DEBUG);
Logger::log('compacting error:' . substr(print_r($e, true), 0, 10000), Logger::DEBUG);
}
$json = json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);