Skip to content
Snippets Groups Projects
Commit f70f427a authored by blizzz's avatar blizzz Committed by GitHub
Browse files

Merge pull request #3298 from nextcloud/downstream-26928

remove obsolete hack (#26928)
parents 64e9a1ae 6fd7d4ef
No related branches found
No related tags found
No related merge requests found
......@@ -205,18 +205,7 @@ class Local extends \OC\Files\Storage\Common {
}
public function file_get_contents($path) {
// file_get_contents() has a memory leak: https://bugs.php.net/bug.php?id=61961
$fileName = $this->getSourcePath($path);
$fileSize = filesize($fileName);
if ($fileSize === 0) {
return '';
}
$handle = fopen($fileName, 'rb');
$content = fread($handle, $fileSize);
fclose($handle);
return $content;
return file_get_contents($this->getSourcePath($path));
}
public function file_put_contents($path, $data) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment