make sure that $this->userId is initialized before using it as a parameter

This commit is contained in:
Björn Schießle 2013-03-04 17:58:56 +01:00
parent e65e6a12f1
commit f2b86d0227
1 changed files with 3 additions and 3 deletions

View File

@ -69,6 +69,8 @@ class Stream {
public function stream_open( $path, $mode, $options, &$opened_path ) {
$this->userId = \OCP\User::getUser();
// Get access to filesystem via filesystemview object
if ( !self::$view ) {
@ -83,8 +85,6 @@ class Stream {
}
$this->userId = \OCP\User::getUser();
// Get the bare file path
$path = str_replace( 'crypt://', '', $path );