diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2012-01-14 21:44:03 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2012-01-14 21:44:03 +0100 |
commit | 7be8c2b686701cf0b71eec0bd083d3b33e9a5c41 (patch) | |
tree | 217cadb3a8a791a7db85e18b24741c9ee19a5227 /src/gsm/lapd_core.c | |
parent | 301f01e938e72423079afe1a1836937053481fd6 (diff) | |
parent | 3a5f08c221b32381623e50095de2751183e994c4 (diff) |
Merge remote-tracking branch 'origin/zecke/lapd-fixes'
Diffstat (limited to 'src/gsm/lapd_core.c')
-rw-r--r-- | src/gsm/lapd_core.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/gsm/lapd_core.c b/src/gsm/lapd_core.c index b1b5a1ba..fb79a2f0 100644 --- a/src/gsm/lapd_core.c +++ b/src/gsm/lapd_core.c @@ -1731,7 +1731,15 @@ static int lapd_data_req(struct osmo_dlsap_prim *dp, struct lapd_msg_ctx *lctx) struct lapd_datalink *dl = lctx->dl; struct msgb *msg = dp->oph.msg; - LOGP(DLLAPD, LOGL_INFO, "writing message to send-queue\n"); + if (msgb_l3len(msg) == 0) { + LOGP(DLLAPD, LOGL_ERROR, + "writing an empty message is not possible.\n"); + msgb_free(msg); + return -1; + } + + LOGP(DLLAPD, LOGL_INFO, + "writing message to send-queue: l3len: %d\n", msgb_l3len(msg)); /* Write data into the send queue */ msgb_enqueue(&dl->send_queue, msg); |