We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41c8902 commit bbaf821Copy full SHA for bbaf821
modules/uac/auth.c
@@ -268,6 +268,9 @@ int uac_auth( struct sip_msg *msg)
268
new_hdr->s = NULL; new_hdr->len = 0;
269
goto error;
270
}
271
+ /* the Authorization hdr was already pushed into the message as a lump
272
+ * along with the buffer, so detach the buffer from new_hdr var */
273
+ new_hdr->s = NULL; new_hdr->len = 0;
274
275
if ( (new_cseq = apply_cseq_op(msg,1)) < 0) {
276
LM_WARN("Failure to increment the CSEQ header - continue \n");
0 commit comments