From: Russell Bryant Date: Wed, 11 May 2005 03:16:52 +0000 (+0000) Subject: fix compat with astmm (bug #4217) X-Git-Tag: 1.0.11.1~135 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57b353cebf038531f2033f5ec8c7fb4fdd64092b;p=thirdparty%2Fasterisk.git fix compat with astmm (bug #4217) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5623 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_features.c b/res/res_features.c index d7dd4cb3c6..f76af6454b 100755 --- a/res/res_features.c +++ b/res/res_features.c @@ -38,6 +38,15 @@ #include #include +#ifdef __AST_DEBUG_MALLOC +static void FREE(void *ptr) +{ + free(ptr); +} +#else +#define FREE free +#endif + #define DEFAULT_PARK_TIME 45000 #define DEFAULT_TRANSFER_DIGIT_TIMEOUT 3000 @@ -235,7 +244,7 @@ int ast_park_call(struct ast_channel *chan, struct ast_channel *peer, int timeou } if (con) { snprintf(exten, sizeof(exten), "%d", x); - ast_add_extension2(con, 1, exten, 1, NULL, parkedcall, strdup(exten), free, registrar); + ast_add_extension2(con, 1, exten, 1, NULL, parkedcall, strdup(exten), FREE, registrar); } if (pu->notquiteyet) { /* Wake up parking thread if we're really done */ @@ -937,7 +946,7 @@ int load_module(void) return -1; } } - ast_add_extension2(con, 1, ast_parking_ext(), 1, NULL, parkcall, strdup(""),free, registrar); + ast_add_extension2(con, 1, ast_parking_ext(), 1, NULL, parkcall, strdup(""), FREE, registrar); ast_pthread_create(&parking_thread, NULL, do_parking_thread, NULL); res = ast_register_application(parkedcall, park_exec, synopsis, descrip); if (!res)