shared: FileSaver: Return NOACCESS when no read access

This commit is contained in:
Albert S. 2022-06-23 15:25:49 +02:00
parent e99b2ba091
commit 9fd48d4664
1 changed files with 5 additions and 0 deletions

View File

@ -100,6 +100,11 @@ SaveFileResult FileSaver::saveFile(const QFileInfo &fileInfo)
int status = -1;
if(!fileInfo.isReadable())
{
return NOACCESS;
}
if(!fileInfo.exists())
{
return NOTFOUND;