summaryrefslogtreecommitdiff
path: root/res/stasis_recording
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-10-02 17:12:49 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-10-02 17:12:49 +0000
commit97fcd6366d128a8b9b176783743d66dbfab6e615 (patch)
treeb70dfad6f2433b9b6a7cc7ee7455ab1585c66072 /res/stasis_recording
parentd14869bcadf719564436b252958a0a2a3ea27fd4 (diff)
MALLOC_DEBUG: Fix some misuses of free() when MALLOC_DEBUG is enabled.
* There were several places in ARI where an external library was mallocing memory that must always be released with free(). When MALLOC_DEBUG is enabled, free() is redirected to the MALLOC_DEBUG version. Since the external library call still uses the normal malloc(), MALLOC_DEBUG complains that the freed memory block is not registered and will not free it. These cases must use ast_std_free(). * Changed calls to asprintf() and vasprintf() to the equivalent ast_asprintf() and ast_vasprintf() versions respectively. ........ Merged revisions 400270 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@400271 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/stasis_recording')
-rw-r--r--res/stasis_recording/stored.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/res/stasis_recording/stored.c b/res/stasis_recording/stored.c
index f7ecaa179..255976d28 100644
--- a/res/stasis_recording/stored.c
+++ b/res/stasis_recording/stored.c
@@ -78,7 +78,7 @@ static int split_path(const char *path, char **dir, char **file)
{
RAII_VAR(char *, relative_dir, NULL, ast_free);
RAII_VAR(char *, absolute_dir, NULL, ast_free);
- RAII_VAR(char *, real_dir, NULL, free);
+ RAII_VAR(char *, real_dir, NULL, ast_std_free);
char *last_slash;
const char *file_portion;
@@ -108,7 +108,16 @@ 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;
}