Skip to content

Commit

Permalink
modules/ims_auth: missing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybeepee committed Sep 12, 2016
1 parent d485cd0 commit fb5f285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/ims_auth/pvt_message.c
Expand Up @@ -84,7 +84,7 @@ struct sip_msg* get_request_from_tx(struct cell *t) {
(which we cannot assume) then we would pollute the shm_msg t->uas.request if we did any parsing on it. Instead, we need to
make a private copy of the message and free it when we are done
*/
if ((_pv_treq.T != t || t->uas.request != _pv_treq.tmsgp) {
if (_pv_treq.T != t || t->uas.request != _pv_treq.tmsgp) {
/* make a copy */
if (_pv_treq.buf == NULL || _pv_treq.buf_size < t->uas.request->len + 1) {
if (_pv_treq.buf != NULL)
Expand Down Expand Up @@ -128,4 +128,4 @@ struct sip_msg* get_request_from_tx(struct cell *t) {
} else
return 0;

}
}

0 comments on commit fb5f285

Please sign in to comment.