diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-03-29 15:09:45 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-04-04 08:22:33 +0200 |
commit | 2a9192334eb6de56b55d5d9c1faab51ca2de2f9e (patch) | |
tree | f863432996152ab86993e1d5523ab836db0df3ca /tests | |
parent | 51bcb0bbe196a82f17ccd67022dcef3a4b7573c1 (diff) | |
download | nextcloud-server-2a9192334eb6de56b55d5d9c1faab51ca2de2f9e.tar.gz nextcloud-server-2a9192334eb6de56b55d5d9c1faab51ca2de2f9e.zip |
Don't try to parse empty body if there is no body
Fixes #3890
If we do a put request without a body the current code still tries to
read the body. This patch makes sure that we do not try to read the body
if the content length is 0.
See RFC 2616 Section 4.3
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AppFramework/Http/RequestTest.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/lib/AppFramework/Http/RequestTest.php b/tests/lib/AppFramework/Http/RequestTest.php index cc4bbee2d8d..f80bffcb480 100644 --- a/tests/lib/AppFramework/Http/RequestTest.php +++ b/tests/lib/AppFramework/Http/RequestTest.php @@ -305,7 +305,10 @@ class RequestTest extends \Test\TestCase { $vars = array( 'put' => $data, 'method' => 'PUT', - 'server' => array('CONTENT_TYPE' => 'image/png'), + 'server' => [ + 'CONTENT_TYPE' => 'image/png', + 'CONTENT_LENGTH' => strlen($data) + ], ); $request = new Request( |