Module: kamailio Branch: master Commit: 16b4e0676b208692070048681fdc037cca08033b URL: https://github.com/kamailio/kamailio/commit/16b4e0676b208692070048681fdc037cca08033b
Author: Victor Seva <[email protected]> Committer: Victor Seva <[email protected]> Date: 2025-10-06T10:32:58+02:00 presence_dfks: remove deprecated xmlMemoryDump() calls related #4411 --- Modified: src/modules/presence_dfks/add_events.c --- Diff: https://github.com/kamailio/kamailio/commit/16b4e0676b208692070048681fdc037cca08033b.diff Patch: https://github.com/kamailio/kamailio/commit/16b4e0676b208692070048681fdc037cca08033b.patch --- diff --git a/src/modules/presence_dfks/add_events.c b/src/modules/presence_dfks/add_events.c index cce076a89c9..394d824dfc3 100644 --- a/src/modules/presence_dfks/add_events.c +++ b/src/modules/presence_dfks/add_events.c @@ -104,13 +104,11 @@ int dfks_publ_handler(struct sip_msg *msg) } xmlFreeDoc(doc); xmlCleanupParser(); - xmlMemoryDump(); return 1; error: xmlFreeDoc(doc); xmlCleanupParser(); - xmlMemoryDump(); return -1; } @@ -328,12 +326,10 @@ int dfks_subs_handler(struct sip_msg *msg) xmlFreeDoc(doc); xmlCleanupParser(); - xmlMemoryDump(); return 1; error: xmlFreeDoc(doc); xmlCleanupParser(); - xmlMemoryDump(); return -1; } _______________________________________________ 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!
