From 97785b2af2824622766b64b810b78a21e26aabb0 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Sun, 6 Oct 2024 00:02:02 +0200 Subject: [PATCH] Fix potential exception in PathEntryCollection path resolving see also #4077 for where this initially came up --- .../config/PathEntryCollectionExtensions.cs | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs index df2048d2dd..f14be3b3e1 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs @@ -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)