Module: kamailio Branch: master Commit: feb3676a1b50caa79e18d26803dc9b247080ee0d URL: https://github.com/kamailio/kamailio/commit/feb3676a1b50caa79e18d26803dc9b247080ee0d
Author: Richard Fuchs <[email protected]> Committer: Richard Fuchs <[email protected]> Date: 2025-11-12T13:10:19-04:00 rtpengine: fix compiler warning Closes #4474 --- Modified: src/modules/rtpengine/rtpengine_dmq.c --- Diff: https://github.com/kamailio/kamailio/commit/feb3676a1b50caa79e18d26803dc9b247080ee0d.diff Patch: https://github.com/kamailio/kamailio/commit/feb3676a1b50caa79e18d26803dc9b247080ee0d.patch --- diff --git a/src/modules/rtpengine/rtpengine_dmq.c b/src/modules/rtpengine/rtpengine_dmq.c index 003f513a736..6af52d5e399 100644 --- a/src/modules/rtpengine/rtpengine_dmq.c +++ b/src/modules/rtpengine/rtpengine_dmq.c @@ -79,7 +79,7 @@ int rtpengine_dmq_handle_msg( rtpengine_dmq_action_t action = RTPENGINE_DMQ_NONE; struct rtpp_set *rtpp_list; - unsigned int setid; + unsigned int setid = -1; struct rtpp_node *rtpp_node; str rtpengine_url = STR_NULL; str viabranch = STR_NULL; _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
