mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-18 18:46:16 +00:00
Conditionally free lock_info->thread_name to avoid a useless warning
Reported by: snuffy Patch by: snuffy Closes issue #11125 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@88010 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -584,7 +584,8 @@ static void lock_info_destroy(void *data)
|
||||
pthread_mutex_unlock(&lock_infos_lock.mutex);
|
||||
|
||||
pthread_mutex_destroy(&lock_info->lock);
|
||||
free((void *) lock_info->thread_name);
|
||||
if (lock_info->thread_name)
|
||||
free((void *) lock_info->thread_name);
|
||||
free(lock_info);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user