From 384aea62574c99c1c446ff3ae322b45ba1620d1d Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 18 Sep 2007 16:14:14 +0000 Subject: [PATCH] Make sure that libpthread doesn't try to call free() directly when MALLOC_DEBUG is enabled. If it does, Asterisk will crash as the address isn't the real beginning of the allocation. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82793 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/threadstorage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asterisk/threadstorage.h b/include/asterisk/threadstorage.h index 91e88dc7f2..a9f075ba27 100644 --- a/include/asterisk/threadstorage.h +++ b/include/asterisk/threadstorage.h @@ -87,7 +87,7 @@ void __ast_threadstorage_object_replace(void *key_old, void *key_new, size_t len * \endcode */ #define AST_THREADSTORAGE(name) \ - AST_THREADSTORAGE_CUSTOM(name, NULL, ast_free) + AST_THREADSTORAGE_CUSTOM(name, NULL, ast_free_ptr) /*! * \brief Define a thread storage variable, with custom initialization and cleanup