Increase head-room in IPA messages received

Without that headroom, I ran into an abort due to insufficient headroom
in the LAPDm code.
This commit is contained in:
Harald Welte 2012-04-05 01:16:46 +02:00
parent a0970249bf
commit 2ed209c758
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ static int abis_sock_cb(struct osmo_fd *bfd, unsigned int what)
if ((what & BSC_FD_READ)) {
if (!link->rx_msg) {
link->rx_msg = msgb_alloc(ABIS_ALLOC_SIZE, "Abis/IP");
link->rx_msg = abis_msgb_alloc(128);
if (!link->rx_msg)
return -ENOMEM;
}