Fix potential exception in PathEntryCollection path resolving
see also #4077 for where this initially came up
This commit is contained in:
parent
7b2de12de3
commit
97785b2af2
|
@ -121,16 +121,25 @@ namespace BizHawk.Client.Common
|
|||
return path;
|
||||
}
|
||||
|
||||
if (path.IsAbsolute())
|
||||
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP2_1_OR_GREATER
|
||||
bool isAbsolute = path.IsAbsolute();
|
||||
#else
|
||||
bool isAbsolute;
|
||||
try
|
||||
{
|
||||
return path;
|
||||
isAbsolute = path.IsAbsolute();
|
||||
}
|
||||
catch
|
||||
{
|
||||
isAbsolute = false;
|
||||
}
|
||||
#endif
|
||||
|
||||
//handling of initial .. was removed (Path.GetFullPath can handle it)
|
||||
//handling of file:// or file:\\ was removed (can Path.GetFullPath handle it? not sure)
|
||||
|
||||
// all bad paths default to EXE
|
||||
return PathUtils.ExeDirectoryPath;
|
||||
return isAbsolute ? path : PathUtils.ExeDirectoryPath;
|
||||
}
|
||||
|
||||
public static string MovieAbsolutePath(this PathEntryCollection collection)
|
||||
|
|
Loading…
Reference in New Issue