Merge pull request #387 from signalwire/mod_dptools_leak

[mod_dptools] scan-build: Fix "Potential leak of memory pointed to by 'head'"
This commit is contained in:
Andrey Volk 2020-02-19 20:15:15 +04:00 committed by GitHub
commit 09b40e052f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3868,7 +3868,7 @@ static void pickup_add_session(switch_core_session_t *session, const char *key)
key = dup_key;
}
node = malloc(sizeof(*node));
switch_zmalloc(node, sizeof(*node));
switch_assert(node);
node->key = strdup(key);
node->uuid = strdup(switch_core_session_get_uuid(session));