shared: FileSaver: Return NOACCESS when no read access
This commit is contained in:
parent
e99b2ba091
commit
9fd48d4664
@ -100,6 +100,11 @@ SaveFileResult FileSaver::saveFile(const QFileInfo &fileInfo)
|
||||
|
||||
int status = -1;
|
||||
|
||||
if(!fileInfo.isReadable())
|
||||
{
|
||||
return NOACCESS;
|
||||
}
|
||||
|
||||
if(!fileInfo.exists())
|
||||
{
|
||||
return NOTFOUND;
|
||||
|
Loading…
Reference in New Issue
Block a user