summaryrefslogtreecommitdiffstats
path: root/php-react-http-client-php8.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-04-07 16:09:09 +0200
committerRemi Collet <remi@remirepo.net>2021-04-07 16:09:09 +0200
commit7c2f6e605ea40c745d4033bc1d2423fe935f56bc (patch)
tree1c3c8bda19bcbad319f4f9a7a06972acca679c4b /php-react-http-client-php8.patch
parentd7847cc32f608b4f0d100f22b526940ba7dcc60e (diff)
fix FTBFS with PHP 8
Diffstat (limited to 'php-react-http-client-php8.patch')
-rw-r--r--php-react-http-client-php8.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/php-react-http-client-php8.patch b/php-react-http-client-php8.patch
new file mode 100644
index 0000000..2a5ee7b
--- /dev/null
+++ b/php-react-http-client-php8.patch
@@ -0,0 +1,12 @@
+diff -up ./src/ChunkedStreamDecoder.php.php8 ./src/ChunkedStreamDecoder.php
+--- ./src/ChunkedStreamDecoder.php.php8 2021-04-07 16:01:26.474243377 +0200
++++ ./src/ChunkedStreamDecoder.php 2021-04-07 16:01:46.823149969 +0200
+@@ -111,7 +111,7 @@ class ChunkedStreamDecoder extends Event
+ }
+ }
+ $this->nextChunkIsLength = false;
+- if (dechex(@hexdec($lengthChunk)) !== strtolower($lengthChunk)) {
++ if (dechex((int)@hexdec($lengthChunk)) !== strtolower($lengthChunk)) {
+ $this->emit('error', array(
+ new Exception('Unable to validate "' . $lengthChunk . '" as chunk length header'),
+ ));