Skip to content

Commit fca4588

Browse files
committed
debugserver: Return a nullptr in GetPlatformString()
This un-breaks the testsuite after https://reviews.llvm.org/D82616 (cherry picked from commit 278874f)
1 parent 10f3e50 commit fca4588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/tools/debugserver/source/MacOSX/MachProcess.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ static bool FBSAddEventDataToOptions(NSMutableDictionary *options,
668668
case PLATFORM_DRIVERKIT:
669669
return "driverkit";
670670
}
671-
return "";
671+
return nullptr;
672672
}
673673

674674
// Given an address, read the mach-o header and load commands out of memory to

0 commit comments

Comments
 (0)