From 00b30f40f03d4acf28e7a5e2293b85f953a0b9d5 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald@gmail.com" Date: Tue, 28 Jan 2014 21:09:06 +0000 Subject: [PATCH] fix send of DM for channel --- src/rfcomm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rfcomm.c b/src/rfcomm.c index de4ca0172..937624d75 100644 --- a/src/rfcomm.c +++ b/src/rfcomm.c @@ -1097,8 +1097,9 @@ static void rfcomm_multiplexer_state_machine(rfcomm_multiplexer_t * multiplexer, // process stored DM responses if (multiplexer->send_dm_for_dlci){ + uint8_t dlci = multiplexer->send_dm_for_dlci; multiplexer->send_dm_for_dlci = 0; - rfcomm_send_dm_pf(multiplexer, multiplexer->send_dm_for_dlci); + rfcomm_send_dm_pf(multiplexer, dlci); return; }