aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2020-05-27 15:48:40 +0200
committerAleksander Morgado <aleksander@aleksander.es>2020-05-27 15:51:26 +0200
commit3efe127aa881a0be3595665cb3f0a38819b37626 (patch)
tree78d7004a8a7a03ac6525dfbac2c7064b71342f53 /src
parent0cc5a6ce4f225b9aad06ec20235467188fe23d66 (diff)
iface-modem-voice: fix assertions in call setup/teardown logic
Diffstat (limited to 'src')
-rw-r--r--src/mm-iface-modem-voice.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mm-iface-modem-voice.c b/src/mm-iface-modem-voice.c
index a91ca881..03aaeb0a 100644
--- a/src/mm-iface-modem-voice.c
+++ b/src/mm-iface-modem-voice.c
@@ -1896,7 +1896,7 @@ in_call_setup_context_step (GTask *task)
self,
(GAsyncReadyCallback) setup_in_call_unsolicited_events_ready,
task);
- break;
+ return;
}
ctx->step++;
/* fall-through */
@@ -1907,7 +1907,7 @@ in_call_setup_context_step (GTask *task)
self,
(GAsyncReadyCallback) setup_in_call_audio_channel_ready,
task);
- break;
+ return;
}
ctx->step++;
/* fall-through */
@@ -2031,7 +2031,7 @@ in_call_cleanup_context_step (GTask *task)
self,
(GAsyncReadyCallback) cleanup_in_call_audio_channel_ready,
task);
- break;
+ return;
}
ctx->step++;
/* fall-through */
@@ -2042,7 +2042,7 @@ in_call_cleanup_context_step (GTask *task)
self,
(GAsyncReadyCallback) cleanup_in_call_unsolicited_events_ready,
task);
- break;
+ return;
}
ctx->step++;
/* fall-through */