diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2017-12-21 14:43:08 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-12-21 14:43:08 +0100 |
commit | 850107acbfe3878326b695d4ea31f02d2321aa22 (patch) | |
tree | 77fce6fcc5bf7c225588f2734efff175f82e65bf /src | |
parent | c2b956aefce495865cbdcb9971e2b3cd99cd0e99 (diff) |
bearer-qmi: fix logic if error setting up WDS event report indications
If we get an error when setting up the WDS event report indications,
make sure we run connect_context_step() after having set the next step
as CONNECT_STEP_LAST.
Diffstat (limited to 'src')
-rw-r--r-- | src/mm-bearer-qmi.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mm-bearer-qmi.c b/src/mm-bearer-qmi.c index 02c2e9cc..5d885d13 100644 --- a/src/mm-bearer-qmi.c +++ b/src/mm-bearer-qmi.c @@ -1058,12 +1058,12 @@ connect_enable_indications_ipv4_ready (QmiClientWds *client, ctx->event_report_ipv4_indication_id = connect_enable_indications_ready (client, res, ctx->self, &ctx->error_ipv4); - if (!ctx->event_report_ipv4_indication_id) { + + if (!ctx->event_report_ipv4_indication_id) ctx->step = CONNECT_STEP_LAST; - return; - } + else + ctx->step++; - ctx->step++; connect_context_step (task); } @@ -1079,12 +1079,12 @@ connect_enable_indications_ipv6_ready (QmiClientWds *client, ctx->event_report_ipv6_indication_id = connect_enable_indications_ready (client, res, ctx->self, &ctx->error_ipv6); - if (!ctx->event_report_ipv6_indication_id) { + + if (!ctx->event_report_ipv6_indication_id) ctx->step = CONNECT_STEP_LAST; - return; - } + else + ctx->step++; - ctx->step++; connect_context_step (task); } |