We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hope I am not wrong. Allocation by url_as_string() or su_alloc() should be followed by su_free(). Appears to be missing inside case nua_i_invite: {}:
url_as_string()
su_alloc()
su_free()
case nua_i_invite: {}
janus-gateway/src/plugins/janus_sip.c
Line 5295 in 5e77ce5
Just need to add line su_free(session->stack->s_home, callee_text); before leaving the case block:
su_free(session->stack->s_home, callee_text);
Line 5345 in 5e77ce5
The text was updated successfully, but these errors were encountered:
c77c66c
Thanks for spotting this, I just pushed a fix for both master and 0.x.
Sorry, something went wrong.
Free string allocated by Sofia SIP stack (see #3032)
83de0f2
No branches or pull requests
Hope I am not wrong. Allocation by
url_as_string()
orsu_alloc()
should be followed bysu_free()
. Appears to be missing insidecase nua_i_invite: {}
:janus-gateway/src/plugins/janus_sip.c
Line 5295 in 5e77ce5
Just need to add line
su_free(session->stack->s_home, callee_text);
before leaving the case block:janus-gateway/src/plugins/janus_sip.c
Line 5345 in 5e77ce5
The text was updated successfully, but these errors were encountered: