mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +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:
@@ -123,18 +123,9 @@ static int split_path(const char *path, char **dir, char **file)
|
||||
return -1;
|
||||
}
|
||||
|
||||
#if defined(__AST_DEBUG_MALLOC)
|
||||
*dir = ast_strdup(real_dir); /* Dupe so we can ast_free() */
|
||||
#else
|
||||
/*
|
||||
* ast_std_free() and ast_free() are the same thing at this time
|
||||
* so we don't need to dupe.
|
||||
*/
|
||||
*dir = real_dir;
|
||||
real_dir = NULL;
|
||||
#endif /* defined(__AST_DEBUG_MALLOC) */
|
||||
*file = ast_strdup(file_portion);
|
||||
return 0;
|
||||
return (*dir && *file) ? 0 : -1;
|
||||
}
|
||||
|
||||
struct match_recording_data {
|
||||
|
Reference in New Issue
Block a user