projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89d06c7
)
Fix a small memory leak on error in ast_channel_alloc().
author
Richard Mudgett
<rmudgett@digium.com>
Mon, 27 Apr 2009 21:22:17 +0000
(21:22 +0000)
committer
Richard Mudgett
<rmudgett@digium.com>
Mon, 27 Apr 2009 21:22:17 +0000
(21:22 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@190797
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
main/channel.c
patch
|
blob
|
history
diff --git
a/main/channel.c
b/main/channel.c
index
d85f4d7
..
eabbfd0
100644
(file)
--- a/
main/channel.c
+++ b/
main/channel.c
@@
-855,6
+855,8
@@
alertpipe_failed:
sched_context_destroy(tmp->sched);
ast_string_field_free_memory(tmp);
+ ast_free(tmp->cid.cid_name);
+ ast_free(tmp->cid.cid_num);
ast_free(tmp);
return NULL;
} else {