* fix error for pclzip.

This commit is contained in:
wangyidong
2016-10-31 11:12:07 +08:00
parent a42672984d
commit 526896d2e6
+1 -1
View File
@@ -2670,7 +2670,7 @@
}
// ----- Read the file content
$v_content = @fread($v_file, $p_header['size']);
$v_content = $p_header['size'] ? @fread($v_file, $p_header['size']) : '';
// ----- Close the file
@fclose($v_file);