Re: [sr-dev] [kamailio/kamailio] secfilter: changed char* by str in RPC function params (#1787)

2019-01-07 Thread Jose Luis Verdeguer
Merged #1787 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/1787#event-2057312324___ Kamailio (SER) - Development Mailing

Re: [sr-dev] [kamailio/kamailio] secfilter: changed char* by str in RPC function params (#1787)

2019-01-07 Thread Daniel-Constantin Mierla
Just a side note for the future: passing structure variables as function parameters is not optimized if the structure is large (some compilers and static analyzers will complain). `str` is a small structure and it is fine, so not something that must to change here. Otherwise is recommended to

[sr-dev] [kamailio/kamailio] secfilter: changed char* by str in RPC function params (#1787)

2019-01-07 Thread Jose Luis Verdeguer
Description Changed char* by str in RPC function params to avoid memory problems You can view, comment on, or merge this pull request online at: https://github.com/kamailio/kamailio/pull/1787 -- Commit Summary -- * secfilter: changed char* by str in RPC function params to avoid memory