Skip to content

Commit 73bc46d

Browse files
authored
Merge pull request #1100 from microsoft/main
Merge main into release_mdd
2 parents adb4266 + 1e4831f commit 73bc46d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/MIDebugEngine/Engine.Impl/MITextPosition.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ public static MITextPosition TryParse(DebuggedProcess process, TupleValue miTupl
3939
if (string.IsNullOrWhiteSpace(filename))
4040
return null;
4141

42+
filename = PlatformUtilities.PathToHostOSPath(filename);
43+
4244
uint? line = miTuple.TryFindUint("line");
4345
if (!line.HasValue || line.Value == 0)
4446
return null;

0 commit comments

Comments
 (0)