GDBRemoteCommunicationClient::SendEnvironmentPacket should use the hex-encoded

env packet if the '*' character used for run length encoding is present.

llvm-svn: 252239
This commit is contained in:
Jason Molenda 2015-11-05 23:51:05 +00:00
parent b36e4c7b5a
commit 60bdafbc16
1 changed files with 1 additions and 0 deletions

View File

@ -1583,6 +1583,7 @@ GDBRemoteCommunicationClient::SendEnvironmentPacket (char const *name_equal_valu
{
case '$':
case '#':
case '*':
send_hex_encoding = true;
break;
default: