ranap: Allocate msgb's with headroom for SCCP User primitive pushing

This commit is contained in:
Harald Welte 2015-12-26 23:41:14 +01:00
parent 96e36eb675
commit e311ae078a
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ char *ranap_cause_str(const RANAP_Cause_t *cause)
static struct msgb *ranap_msgb_alloc(void)
{
return msgb_alloc(1024, "RANAP Tx");
return msgb_alloc_headroom(1024+256, 256, "RANAP Tx");
}
static struct msgb *_ranap_gen_msg(RANAP_RANAP_PDU_t *pdu)