From: Mike Brady Date: Wed, 23 Jan 2019 16:34:34 +0000 (+0000) Subject: move malloc_cleanup to common.c X-Git-Tag: 3.3RC0~66^2~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a9063fafeeccaa16db979a81c2bef5278f9dee8;p=thirdparty%2Fshairport-sync.git move malloc_cleanup to common.c --- diff --git a/common.c b/common.c index 8430c29d..10c9cc9f 100644 --- a/common.c +++ b/common.c @@ -1243,6 +1243,11 @@ int _debug_mutex_unlock(pthread_mutex_t *mutex, const char *mutexname, const cha return r; } +void malloc_cleanup(void *arg) { + // debug(1, "malloc cleanup called."); + free(arg); +} + void pthread_cleanup_debug_mutex_unlock(void *arg) { pthread_mutex_unlock((pthread_mutex_t *)arg); } char *get_version_string() {