Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2016-02-06 03:28:42 +0000
committerEugene Tarassov2016-02-06 03:28:42 +0000
commitfe33a687e2d0630674678b66c950e393ee9fc095 (patch)
tree148245bcdc12abea2c94b7b7839c033f5eb779e1 /server/tcf/services
parent2cce6bb3a1922a1695a792e5afd4733f5d9dd2c9 (diff)
downloadorg.eclipse.tcf.agent-fe33a687e2d0630674678b66c950e393ee9fc095.tar.gz
org.eclipse.tcf.agent-fe33a687e2d0630674678b66c950e393ee9fc095.tar.xz
org.eclipse.tcf.agent-fe33a687e2d0630674678b66c950e393ee9fc095.zip
TCF Server: fixed memory leak
Diffstat (limited to 'server/tcf/services')
-rw-r--r--server/tcf/services/context-proxy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/tcf/services/context-proxy.c b/server/tcf/services/context-proxy.c
index 1b03391b..ce4fe492 100644
--- a/server/tcf/services/context-proxy.c
+++ b/server/tcf/services/context-proxy.c
@@ -447,6 +447,7 @@ static void free_context_cache(ContextCache * c) {
context_clear_memory_map(&c->target_map);
loc_free(c->target_map.regions);
loc_free(c->reg_defs);
+ loc_free(c->suspend_reason);
loc_free(c->signal_name);
loc_free(c->bp_ids);
if (c->reg_props != NULL) {

Back to the top