Module: kamailio Branch: master Commit: 57fa2bd95766a5b72d768617ff931224ee72d1fa URL: https://github.com/kamailio/kamailio/commit/57fa2bd95766a5b72d768617ff931224...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2025-07-25T15:34:03+02:00
core: fix name for ksr_sigsem_xfree()
- GH #4340
---
Modified: src/core/utils/mtops.c
---
Diff: https://github.com/kamailio/kamailio/commit/57fa2bd95766a5b72d768617ff931224... Patch: https://github.com/kamailio/kamailio/commit/57fa2bd95766a5b72d768617ff931224...
---
diff --git a/src/core/utils/mtops.c b/src/core/utils/mtops.c index 9c5de7801dc..faad2f6cc0e 100644 --- a/src/core/utils/mtops.c +++ b/src/core/utils/mtops.c @@ -150,7 +150,7 @@ void ksr_sigsem_free(ksr_sigsem_t *sgs) /** * */ -void ksr_sigsem_sfree(ksr_sigsem_t *sgs) +void ksr_sigsem_xfree(ksr_sigsem_t *sgs) { pthread_cond_destroy(&sgs->cnd); pthread_mutex_destroy(&sgs->mtx);