Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/agent
diff options
context:
space:
mode:
authorChristophe Augier2012-09-11 17:06:22 +0000
committerEugene Tarassov2012-09-11 19:24:18 +0000
commit791bec7aae4709e74feb60e63cdeebff14b87ce3 (patch)
treef135552ef101705fceab219d5d2fe074931eb65d /agent
parente7162b2af9573acad4dba9c724421589b054432d (diff)
downloadorg.eclipse.tcf.agent-791bec7aae4709e74feb60e63cdeebff14b87ce3.tar.gz
org.eclipse.tcf.agent-791bec7aae4709e74feb60e63cdeebff14b87ce3.tar.xz
org.eclipse.tcf.agent-791bec7aae4709e74feb60e63cdeebff14b87ce3.zip
Bug 389290 - Memory get fails to parse 64-bits address
Diffstat (limited to 'agent')
-rw-r--r--agent/tcf/services/memoryservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/tcf/services/memoryservice.c b/agent/tcf/services/memoryservice.c
index 15560058..ace80414 100644
--- a/agent/tcf/services/memoryservice.c
+++ b/agent/tcf/services/memoryservice.c
@@ -295,7 +295,7 @@ static MemoryCommandArgs * read_command_args(char * token, Channel * c, int cmd)
json_read_string(&c->inp, id, sizeof(id));
json_test_char(&c->inp, MARKER_EOA);
- buf.addr = json_read_ulong(&c->inp);
+ buf.addr = json_read_uint64(&c->inp);
json_test_char(&c->inp, MARKER_EOA);
buf.word_size = (int)json_read_long(&c->inp);
json_test_char(&c->inp, MARKER_EOA);

Back to the top