Skip to content

Commit

Permalink
Fix Watson crash on null module names (#3940)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikem8361 committed Jun 2, 2023
1 parent 95b1a16 commit 5b4dc1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public ModuleFromDebuggerServices(
{
_moduleService = moduleService;
ModuleIndex = moduleIndex;
FileName = imageName;
FileName = imageName ?? string.Empty;
ImageBase = imageBase;
ImageSize = imageSize;
IndexFileSize = indexTimeStamp == InvalidTimeStamp ? null : indexFileSize;
Expand Down

0 comments on commit 5b4dc1b

Please sign in to comment.