aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-10-21 11:45:26 +0200
committerHarald Welte <laforge@gnumonks.org>2018-10-21 11:46:14 +0200
commit9aad185151097c393acbb997e27c7b074cde012c (patch)
treed5669fa3b4c16e10471ac8f50fcab47b2bdc9ff8
parenta770f6967b1b1ca765251cbafc149d0451335202 (diff)
hnbgw_tx_hnb_register_rej(): Missing return statement
Change-Id: I0bdee8ede9ffdc16c16a4f5723acb7b4bceb2158 Fixes: Coverity CID#188869
-rw-r--r--src/hnbgw_hnbap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hnbgw_hnbap.c b/src/hnbgw_hnbap.c
index 2a19dda..1d50d4d 100644
--- a/src/hnbgw_hnbap.c
+++ b/src/hnbgw_hnbap.c
@@ -85,7 +85,10 @@ static int hnbgw_tx_hnb_register_rej(struct hnb_context *ctx)
} else {
/* The message was not queued. Destroy the connection right away. */
hnb_context_release(ctx);
+ return rc;
}
+
+ return 0;
}
static int hnbgw_tx_hnb_register_acc(struct hnb_context *ctx)