summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsua-lib
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2014-01-23 08:09:29 +0000
committerNanang Izzuddin <nanang@teluu.com>2014-01-23 08:09:29 +0000
commit19876d4d3296c6cb7b3e573bdfcc8fedf0072ac3 (patch)
treec1dce45e478171d85dc5fb5e9f07d275b8cca32f /pjsip/src/pjsua-lib
parentf0c2e61eb1c3ee704503be5e0703aa05fac73903 (diff)
Misc (re #1630): Fixed GCC build warnings (thanks Tzafrir Cohen for the patch).
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4712 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/src/pjsua-lib')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_call.c5
-rw-r--r--pjsip/src/pjsua-lib/pjsua_im.c5
2 files changed, 3 insertions, 7 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_call.c b/pjsip/src/pjsua-lib/pjsua_call.c
index 1cd91fcd..4e840df1 100644
--- a/pjsip/src/pjsua-lib/pjsua_call.c
+++ b/pjsip/src/pjsua-lib/pjsua_call.c
@@ -4497,12 +4497,9 @@ static void pjsua_call_on_tsx_state_changed(pjsip_inv_session *inv,
* Incoming MESSAGE request!
*/
pjsip_rx_data *rdata;
- pjsip_msg *msg;
pjsip_accept_hdr *accept_hdr;
- pj_status_t status;
rdata = e->body.tsx_state.src.rdata;
- msg = rdata->msg_info.msg;
/* Request MUST have message body, with Content-Type equal to
* "text/plain".
@@ -4522,7 +4519,7 @@ static void pjsua_call_on_tsx_state_changed(pjsip_inv_session *inv,
/* Respond with 200 first, so that remote doesn't retransmit in case
* the UI takes too long to process the message.
*/
- status = pjsip_dlg_respond( inv->dlg, rdata, 200, NULL, NULL, NULL);
+ pjsip_dlg_respond( inv->dlg, rdata, 200, NULL, NULL, NULL);
/* Process MESSAGE request */
pjsua_im_process_pager(call->index, &inv->dlg->remote.info_str,
diff --git a/pjsip/src/pjsua-lib/pjsua_im.c b/pjsip/src/pjsua-lib/pjsua_im.c
index 7ae31889..a8175583 100644
--- a/pjsip/src/pjsua-lib/pjsua_im.c
+++ b/pjsip/src/pjsua-lib/pjsua_im.c
@@ -274,7 +274,6 @@ static pj_bool_t im_on_rx_request(pjsip_rx_data *rdata)
pj_str_t from, to;
pjsip_accept_hdr *accept_hdr;
pjsip_msg *msg;
- pj_status_t status;
msg = rdata->msg_info.msg;
@@ -306,8 +305,8 @@ static pj_bool_t im_on_rx_request(pjsip_rx_data *rdata)
/* Respond with 200 first, so that remote doesn't retransmit in case
* the UI takes too long to process the message.
*/
- status = pjsip_endpt_respond( pjsua_var.endpt, NULL, rdata, 200, NULL,
- NULL, NULL, NULL);
+ pjsip_endpt_respond( pjsua_var.endpt, NULL, rdata, 200, NULL,
+ NULL, NULL, NULL);
/* For the source URI, we use Contact header if present, since
* Contact header contains the port number information. If this is