shared: SandboxedProcessor: Return NO_ACCESS when file not readable

This commit is contained in:
Albert S. 2022-06-23 15:24:49 +02:00
vanhempi 01a6a499c5
commit 0867ab294d
2 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa

Näytä tiedosto

@ -11,6 +11,7 @@ enum DataSource
};
#define NOTHING_PROCESSED 4
#define NO_ACCESS 5
class Processor
{

Näytä tiedosto

@ -92,6 +92,10 @@ int SandboxedProcessor::process()
processor = defaultTextProcessor;
}
}
if(!fileInfo.isReadable())
{
return NO_ACCESS;
}
if(processor == nullptr || processor == nothingProcessor)
{
/* Nothing to do */