Parse 64-bit CRC addrs even on 32-bit hosts

Change-Id: I38720163eff292b2c24f25da4e25feb8245ff672
This commit is contained in:
Tim Newsome 2018-01-02 12:58:46 -08:00
parent ab5a98663e
commit 2eddd8e092
1 changed files with 1 additions and 1 deletions

View File

@ -2444,7 +2444,7 @@ static int gdb_query_packet(struct connection *connection,
/* skip command character */
packet += 5;
addr = strtoul(packet, &separator, 16);
addr = strtoull(packet, &separator, 16);
if (*separator != ',') {
LOG_ERROR("incomplete read memory packet received, dropping connection");