fix(pua_reginfo): free pkg memory after getting the XML attribute - free the memory from the state XML attribute that was returned and immediately used in another function call without freeing leaving one small mem leak; - add comments but keep the dead code regarding parsed but unused attrs.
<!-- Kamailio Pull Request Template -->
<!-- IMPORTANT: - for detailed contributing guidelines, read: https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md - pull requests must be done to master branch, unless they are backports of fixes from master branch to a stable branch - backports to stable branches must be done with 'git cherry-pick -x ...' - code is contributed under BSD for core and main components (tm, sl, auth, tls) - code is contributed GPLv2 or a compatible license for the other components - GPL code is contributed with OpenSSL licensing exception -->
#### Pre-Submission Checklist <!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply --> <!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above--> <!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list --> - [ ] Commit message has the format required by CONTRIBUTING guide - [ ] Commits are split per component (core, individual modules, libs, utils, ...) - [ ] Each component has a single commit (if not, squash them into one commit) - [ ] No commits to README files for modules (changes must be done to docbook files in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change - [ ] Small bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds new functionality) - [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist: <!-- Go over all points below, and after creating the PR, tick the checkboxes that apply --> - [ ] PR should be backported to stable branches - [ ] Tested changes locally - [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description <!-- Describe your changes in detail -->
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3953
-- Commit Summary --
* fix(pua_reginfo): free pkg memory after getting the content of each XML attribute
-- File Changes --
M src/modules/pua_reginfo/notify.c (86)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3953.patch https://github.com/kamailio/kamailio/pull/3953.diff
Local test running, I will update the checklist once I notice no new memory leaks.
@apogrebennyk pushed 1 commit.
578297d62c1e37abc11ddce6cd4e36a824fe2407 fix(pua_reginfo): free pkg memory after getting the content of each XML attribute
@apogrebennyk pushed 1 commit.
11ea7ab0ae105882c402ccd45a244881cadbe910 fix(pua_reginfo): free pkg memory after getting the content of each XML attribute
@apogrebennyk pushed 1 commit.
ec690a7d93715423cb6d50412756df6272dca067 fix(pua_reginfo): free pkg memory after getting the content of each XML attribute
@apogrebennyk pushed 1 commit.
4d1207f99eff84785b00752d6d9723bd9faac115 fix(pua_reginfo): fix contact_uri memory leak
This looks stable now.
@linuxmaniac commented on this pull request.
@@ -417,12 +450,17 @@ int process_body(str notify_body, udomain_t *domain)
if(xmlStrcasecmp(params->name, BAD_CAST "unknown-param") != 0) goto next_param; - len += 1 /* ; */ - + strlen(xmlGetAttrContentByName(params, "name")); + char *param_name = xmlGetAttrContentByName(params, "name");
char *param_name should be defined at the top
@linuxmaniac commented on this pull request.
@@ -439,10 +477,11 @@ int process_body(str notify_body, udomain_t *domain)
if(xmlStrcasecmp(params->name, BAD_CAST "unknown-param") != 0) goto next_param2; + char *param_name =
just one definition?
And can you please change the commit message prefix to "pua_reginfo:"
@apogrebennyk pushed 1 commit.
969f7f8bc80872e2e66d1f992eb93bced6fb2aa3 pua_reginfo: free pkg memory after getting the content of each XML attribute
@linuxmaniac the PR comments have been incorporated, please recheck.
@apogrebennyk commented on this pull request.
@@ -439,10 +477,11 @@ int process_body(str notify_body, udomain_t *domain)
if(xmlStrcasecmp(params->name, BAD_CAST "unknown-param") != 0) goto next_param2; + char *param_name =
done
@apogrebennyk commented on this pull request.
@@ -417,12 +450,17 @@ int process_body(str notify_body, udomain_t *domain)
if(xmlStrcasecmp(params->name, BAD_CAST "unknown-param") != 0) goto next_param; - len += 1 /* ; */ - + strlen(xmlGetAttrContentByName(params, "name")); + char *param_name = xmlGetAttrContentByName(params, "name");
done, thanks
Merged #3953 into master.