From: Robin Appelman Date: Sun, 4 Jul 2010 07:54:54 +0000 (+0200) Subject: fix potential infinite loop X-Git-Tag: v3.0~360 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8c8979f11e1f454d3b0e866880a4be6d7daf7f82;p=nextcloud-server.git fix potential infinite loop --- diff --git a/inc/HTTP/WebDAV/Server/Filesystem.php b/inc/HTTP/WebDAV/Server/Filesystem.php index 000831f6fef..7826a690a55 100755 --- a/inc/HTTP/WebDAV/Server/Filesystem.php +++ b/inc/HTTP/WebDAV/Server/Filesystem.php @@ -177,15 +177,15 @@ $info["props"][] = $this->mkprop("resourcetype", ""); if ( OC_FILESYSTEM::is_readable($fspath)) { $info["props"][] = $this->mkprop("getcontenttype", $this->_mimetype($fspath)); - } else { + } else { "SELECT ns, name, value FROM properties WHERE path = '$path'"; $info["props"][] = $this->mkprop("getcontenttype", "application/x-non-readable"); } $info["props"][] = $this->mkprop("getcontentlength", OC_FILESYSTEM::filesize($fspath)); } // get additional properties from database - $query = "SELECT ns, name, value FROM properties WHERE path = '$path'"; - $res = OC_DB::select($query); - while ($row = $res[0]) { + $query = "SELECT ns, name, value FROM properties WHERE path = '$path'"; + $res = OC_DB::select($query); + foreach($res as $row){ $info["props"][] = $this->mkprop($row["ns"], $row["name"], $row["value"]); } return $info;