<rdar://problem/13980489>

I added scan type to ‘qGetProfileData’ previously but forgot to update the check to be a substring search.

llvm-svn: 184588
This commit is contained in:
Han Ming Ong 2013-06-21 19:56:59 +00:00
parent e3943d0554
commit 399289e931
1 changed files with 1 additions and 1 deletions

View File

@ -3078,7 +3078,7 @@ public:
output_strm.Printf (" packet: %s\n", packet_cstr);
std::string &response_str = response.GetStringRef();
if (strcmp(packet_cstr, "qGetProfileData") == 0)
if (strstr(packet_cstr, "qGetProfileData") != NULL)
{
response_str = process->GetGDBRemote().HarmonizeThreadIdsForProfileData(process, response);
}