aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2015-12-18 13:41:39 +0100
committerHarald Welte <laforge@gnumonks.org>2015-12-18 13:41:39 +0100
commit8526d158f893283fee0b176ef9c7401133949815 (patch)
treec23ed142a7efb652e37cfb15fab31382dafe0f22 /src
parent9c397d4969f6982093bfcec1f7f3770525a46752 (diff)
hnbap/rua: Don't usse malloc() directly but use CALLOC() macro
Diffstat (limited to 'src')
-rw-r--r--src/hnbap_common.c3
-rw-r--r--src/rua_common.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/hnbap_common.c b/src/hnbap_common.c
index d72ca3e..cdf38e0 100644
--- a/src/hnbap_common.c
+++ b/src/hnbap_common.c
@@ -223,11 +223,10 @@ IE_t *hnbap_new_ie(ProtocolIE_ID_t id,
IE_t *buff;
- if ((buff = MALLOC(sizeof(IE_t))) == NULL) {
+ if ((buff = CALLOC(1, sizeof(IE_t))) == NULL) {
// Possible error on malloc
return NULL;
}
- memset((void *)buff, 0, sizeof(IE_t));
buff->id = id;
buff->criticality = criticality;
diff --git a/src/rua_common.c b/src/rua_common.c
index 8e2cc91..8c21faa 100644
--- a/src/rua_common.c
+++ b/src/rua_common.c
@@ -197,11 +197,10 @@ RUA_IE_t *rua_new_ie(RUA_ProtocolIE_ID_t id,
RUA_IE_t *buff;
- if ((buff = malloc(sizeof(*buff))) == NULL) {
+ if ((buff = CALLOC(1, sizeof(*buff))) == NULL) {
// Possible error on malloc
return NULL;
}
- memset((void *)buff, 0, sizeof(*buff));
buff->id = id;
buff->criticality = criticality;