summaryrefslogtreecommitdiff
path: root/include/asterisk/chanvars.h
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2018-02-19 19:55:50 -0600
committerRichard Mudgett <rmudgett@digium.com>2018-03-01 13:13:55 -0600
commitc711e4076a6913e18e27a694bcb3fb721822fb58 (patch)
tree57d414b30a6ac76408ea8831c071ce54ffc428d4 /include/asterisk/chanvars.h
parente58ae393b1f83981178c7ddedf4cfb40e6ca5f31 (diff)
core: Remove ABI effects of MALLOC_DEBUG.
This allows asterisk to be compiled with MALLOC_DEBUG to load modules built without MALLOC_DEBUG. Now pre-compiled third-party modules will still work regardless of MALLOC_DEBUG being enabled or not. Change-Id: Ic07ad80b2c2df894db984cf27b16a69383ce0e10
Diffstat (limited to 'include/asterisk/chanvars.h')
-rw-r--r--include/asterisk/chanvars.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/asterisk/chanvars.h b/include/asterisk/chanvars.h
index 2040c7b65..1a303c5f7 100644
--- a/include/asterisk/chanvars.h
+++ b/include/asterisk/chanvars.h
@@ -35,12 +35,10 @@ AST_LIST_HEAD_NOLOCK(varshead, ast_var_t);
struct varshead *ast_var_list_create(void);
void ast_var_list_destroy(struct varshead *head);
-#ifdef __AST_DEBUG_MALLOC
+
struct ast_var_t *_ast_var_assign(const char *name, const char *value, const char *file, int lineno, const char *function);
-#define ast_var_assign(a,b) _ast_var_assign(a,b,__FILE__,__LINE__,__PRETTY_FUNCTION__)
-#else
-struct ast_var_t *ast_var_assign(const char *name, const char *value);
-#endif
+#define ast_var_assign(name, value) _ast_var_assign(name, value, __FILE__, __LINE__, __PRETTY_FUNCTION__)
+
void ast_var_delete(struct ast_var_t *var);
const char *ast_var_name(const struct ast_var_t *var);
const char *ast_var_full_name(const struct ast_var_t *var);