Ver Fonte

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

Daniele Alessandri há 14 anos atrás
pai
commit
7465daa0eb
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

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