fixed: uninitialized variable in 'rm' winix function (in HasAccess method)

sometimes for directories the rm function could return 'access true' (even without 'r' parameter)



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@803 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2012-02-10 00:50:05 +00:00
parent 9687d5cd66
commit f6db85fcdb
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ return true;
*/
bool Rm::HasAccess()
{
bool res;
bool res = false;
if( cur->request->is_item )
{