Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornosami <jasonimison@gmail.com>2022-10-17 20:49:49 +0300
committernosami <jasonimison@gmail.com>2022-10-25 13:44:28 +0300
commit8124bb5631729aebf136596ec5324b249a14f0f9 (patch)
tree26cb192633324cfd45c1dca241cf9cd61880be04
parent20dce7a122ec78619b5452040e4f7c540d78d037 (diff)
Fix broken Breakpoint test
-rw-r--r--Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs b/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
index 6474786..16a4176 100644
--- a/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
+++ b/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
@@ -483,10 +483,10 @@ namespace Mono.Debugging.Client
if (string.IsNullOrEmpty(path))
return path;
- string result = null;
+ string result;
try
{
- result = realpath(path, IntPtr.Zero);
+ result = realpath(path, IntPtr.Zero) ?? Path.GetFullPath(path);
}
catch
{