mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
Make the MALLOC_DEBUG output for free() useful again. After changing calls to
free to be ast_free, astmm said all calls to free were coming from utils.h git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82628 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -49,6 +49,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#ifdef AAL_ARGCHECK
|
||||
#include "asterisk/argdesc.h"
|
||||
#endif
|
||||
#include "asterisk/utils.h"
|
||||
|
||||
extern int localized_pbx_load_module(void);
|
||||
|
||||
@@ -3702,7 +3703,7 @@ void add_extensions(struct ael_extension *exten)
|
||||
pbx_substitute_variables_helper(NULL, exten->name, realext, sizeof(realext) - 1);
|
||||
if (exten->hints) {
|
||||
if (ast_add_extension2(exten->context, 0 /*no replace*/, realext, PRIORITY_HINT, NULL, exten->cidmatch,
|
||||
exten->hints, NULL, ast_free, registrar)) {
|
||||
exten->hints, NULL, ast_free_ptr, registrar)) {
|
||||
ast_log(LOG_WARNING, "Unable to add step at priority 'hint' of extension '%s'\n",
|
||||
exten->name);
|
||||
}
|
||||
@@ -3782,7 +3783,7 @@ void add_extensions(struct ael_extension *exten)
|
||||
label = 0;
|
||||
|
||||
if (ast_add_extension2(exten->context, 0 /*no replace*/, realext, pr->priority_num, (label?label:NULL), exten->cidmatch,
|
||||
app, strdup(appargs), ast_free, registrar)) {
|
||||
app, strdup(appargs), ast_free_ptr, registrar)) {
|
||||
ast_log(LOG_WARNING, "Unable to add step at priority '%d' of extension '%s'\n", pr->priority_num,
|
||||
exten->name);
|
||||
}
|
||||
|
Reference in New Issue
Block a user