2018-01-01 23:18:08 +00:00
|
|
|
From: Jan Engelhardt <jengelh@inai.de>
|
2018-12-11 13:47:53 +00:00
|
|
|
Date: 2018-12-11 14:44:48.979665889 +0100
|
2018-01-01 23:18:08 +00:00
|
|
|
Subject: [PATCH] fix return values
|
|
|
|
|
2018-12-11 13:47:53 +00:00
|
|
|
Fix yet more return value problems.
|
2018-01-01 23:18:08 +00:00
|
|
|
---
|
2018-12-11 13:47:53 +00:00
|
|
|
src/hnbgw_hnbap.c | 1 +
|
|
|
|
1 file changed, 1 insertion(+)
|
2018-01-01 23:18:08 +00:00
|
|
|
|
2018-12-11 13:47:53 +00:00
|
|
|
Index: osmo-iuh-0.3.0/src/hnbgw_hnbap.c
|
|
|
|
===================================================================
|
|
|
|
--- osmo-iuh-0.3.0.orig/src/hnbgw_hnbap.c
|
|
|
|
+++ osmo-iuh-0.3.0/src/hnbgw_hnbap.c
|
|
|
|
@@ -86,6 +86,7 @@ static int hnbgw_tx_hnb_register_rej(str
|
|
|
|
/* The message was not queued. Destroy the connection right away. */
|
|
|
|
hnb_context_release(ctx, true);
|
2018-01-02 00:45:55 +00:00
|
|
|
}
|
|
|
|
+ return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-11 13:47:53 +00:00
|
|
|
static int hnbgw_tx_hnb_register_acc(struct hnb_context *ctx)
|