소스 검색

Bugfix: return an empty string instead of null when the data length of a bulk reply is 0.

Daniele Alessandri 15 년 전
부모
커밋
55c40afcd8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -312,8 +312,8 @@ class Response {
                     return $value;
                 }
                 else if ($dataLength == 0) {
-                    // TODO: I just have a doubt here...
                     fread($socket, 2);
+                    return '';
                 }
 
                 return null;