Merge pull request #11050 from owncloud/enc-flockfix
Remove passing by reference to allow for proper GC
This commit is contained in:
commit
90e91a9d10
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue