Log attempts to open non-URL strings

This commit is contained in:
Dmitry Serov
2019-04-19 15:41:02 +07:00
parent 4331d9f0c7
commit 4d071deead

View File

@@ -1273,6 +1273,7 @@ static void removeKeRangerRansomware()
NSURL * url = [NSURL URLWithString: urlString];
if (url == nil)
{
NSLog(@"Detected non-URL string \"%@\". Ignoring.", urlString);
return;
}