Explorar o código

More strict check of the length argument for a network read.

Daniele Alessandri %!s(int64=14) %!d(string=hai) anos
pai
achega
48728d2672
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -1419,7 +1419,7 @@ class TcpConnection extends Connection implements IConnectionSingle {
     }
 
     public function readBytes($length) {
-        if ($length == 0) {
+        if ($length <= 0) {
             throw new \InvalidArgumentException('Length parameter must be greater than 0');
         }
         $socket = $this->getSocket();