mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 19:43:03 +00:00
Convert deprecated routines to the new names.
(closes issue #13297) Reported by: snuffy Patches: bug13297_20080814.diff uploaded by snuffy (license 35) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@137456 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -429,12 +429,12 @@ int ast_channel_trace_enable(struct ast_channel *chan)
|
|||||||
struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
|
struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
|
||||||
struct ast_chan_trace_data *traced;
|
struct ast_chan_trace_data *traced;
|
||||||
if (!store) {
|
if (!store) {
|
||||||
store = ast_channel_datastore_alloc(&ast_chan_trace_datastore_info, "ChanTrace");
|
store = ast_datastore_alloc(&ast_chan_trace_datastore_info, "ChanTrace");
|
||||||
if (!store)
|
if (!store)
|
||||||
return -1;
|
return -1;
|
||||||
traced = ast_calloc(1, sizeof(*traced));
|
traced = ast_calloc(1, sizeof(*traced));
|
||||||
if (!traced) {
|
if (!traced) {
|
||||||
ast_channel_datastore_free(store);
|
ast_datastore_free(store);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
store->data = traced;
|
store->data = traced;
|
||||||
|
|||||||
Reference in New Issue
Block a user