mirror of
https://github.com/asterisk/asterisk.git
synced 2025-12-05 04:31:42 +00:00
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
This commit is contained in:
@@ -52,13 +52,9 @@
|
||||
* ast_str_append_va(...)
|
||||
*/
|
||||
|
||||
#ifdef __AST_DEBUG_MALLOC
|
||||
int __ast_debug_str_helper(struct ast_str **buf, ssize_t max_len,
|
||||
int append, const char *fmt, va_list ap, const char *file, int lineno, const char *function)
|
||||
#else
|
||||
int __ast_str_helper(struct ast_str **buf, ssize_t max_len,
|
||||
int append, const char *fmt, va_list ap)
|
||||
#endif
|
||||
int append, const char *fmt, va_list ap,
|
||||
const char *file, int lineno, const char *function)
|
||||
{
|
||||
int res;
|
||||
int added;
|
||||
@@ -110,13 +106,7 @@ int __ast_str_helper(struct ast_str **buf, ssize_t max_len,
|
||||
need = max_len;
|
||||
}
|
||||
|
||||
if (
|
||||
#ifdef __AST_DEBUG_MALLOC
|
||||
_ast_str_make_space(buf, need, file, lineno, function)
|
||||
#else
|
||||
ast_str_make_space(buf, need)
|
||||
#endif
|
||||
) {
|
||||
if (_ast_str_make_space(buf, need, file, lineno, function)) {
|
||||
ast_log_safe(LOG_VERBOSE, "failed to extend from %d to %d\n",
|
||||
(int) (*buf)->__AST_STR_LEN, need);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user