Merge pull request #11050 from owncloud/enc-flockfix

Remove passing by reference to allow for proper GC
This commit is contained in:
Lukas Reschke 2014-09-15 00:31:10 +02:00
commit 90e91a9d10
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ class Proxy extends \OC_FileProxy {
* @param resource $result
* @return resource
*/
public function postFopen($path, &$result) {
public function postFopen($path, $result) {
$path = \OC\Files\Filesystem::normalizePath($path);