summaryrefslogtreecommitdiffhomepage
path: root/digital
diff options
context:
space:
mode:
authorNicolas Schodet2012-11-21 22:34:33 +0100
committerNicolas Schodet2012-12-01 18:52:16 +0100
commit5cac146b50a70173a9007f698acd3d78357f6836 (patch)
tree58e862c49fc55831bc539e31cd31c8276eea171e /digital
parentf010828b4de825592e66cd8dbfe4f802a8a073a2 (diff)
digital/avr/modules/host: fix missing message release
Diffstat (limited to 'digital')
-rw-r--r--digital/avr/modules/host/mex.host.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/digital/avr/modules/host/mex.host.c b/digital/avr/modules/host/mex.host.c
index 274c242e..e884971c 100644
--- a/digital/avr/modules/host/mex.host.c
+++ b/digital/avr/modules/host/mex.host.c
@@ -529,6 +529,7 @@ mex_node_reserve (const char *mtype_str)
/* Return allocated message type. */
u8 mtype;
mex_msg_pop (rsp, "B", &mtype);
+ mex_msg_delete (rsp);
return mtype;
}