smpp: Attempt to fix a memory leak of the msgb

The smpp_pdu_rx method does not free the msgb. Introduce an
annotation (currently defined to nothing) to indicate what
will happen to a msgb.
This commit is contained in:
Holger Hans Peter Freyther 2013-04-29 09:11:02 +02:00
parent 2bc90c274d
commit d7b22c624b
2 changed files with 6 additions and 1 deletions

View File

@ -8,6 +8,9 @@
#include <openbsc/rest_octets.h>
/** annotations for msgb ownership */
#define __uses
#define OBSC_NM_W_ACK_CB(__msgb) (__msgb)->cb[3]
struct mncc_sock_state;

View File

@ -40,6 +40,7 @@
#include "smpp_smsc.h"
#include <openbsc/debug.h>
#include <openbsc/gsm_data.h>
/*! \brief Ugly wrapper. libsmpp34 should do this itself! */
#define SMPP34_UNPACK(rc, type, str, data, len) \
@ -718,7 +719,7 @@ static int smpp_handle_submit(struct osmo_esme *esme, struct msgb *msg)
}
/*! \brief one complete SMPP PDU from the ESME has been received */
static int smpp_pdu_rx(struct osmo_esme *esme, struct msgb *msg)
static int smpp_pdu_rx(struct osmo_esme *esme, struct msgb *msg __uses)
{
uint32_t cmd_id = smpp_msgb_cmdid(msg);
int rc = 0;
@ -822,6 +823,7 @@ static int esme_link_read_cb(struct osmo_fd *ofd)
if (esme->read_idx >= esme->read_len) {
rc = smpp_pdu_rx(esme, esme->read_msg);
msgb_free(esme->read_msg);
esme->read_msg = NULL;
esme->read_idx = 0;
esme->read_len = 0;