aboutsummaryrefslogtreecommitdiffstats
path: root/channels/sig_analog.h
diff options
context:
space:
mode:
authorrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-08 23:37:57 +0000
committerrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-08 23:37:57 +0000
commit7ca87fcab5a5e9b78b34afcbb8d36d7469a55d2f (patch)
tree42dc130bc7005d8507587595f03339692d2f0ca3 /channels/sig_analog.h
parent2c3011915a9bd083d08213f8fb773e81436226eb (diff)
Fix memory leak of sig_xxx private structures.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@217332 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/sig_analog.h')
-rw-r--r--channels/sig_analog.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels/sig_analog.h b/channels/sig_analog.h
index b937ec665..ce41ccc70 100644
--- a/channels/sig_analog.h
+++ b/channels/sig_analog.h
@@ -310,7 +310,8 @@ struct analog_pvt {
int ringt_base;
};
-struct analog_pvt * analog_new(enum analog_sigtype signallingtype, struct analog_callback *c, void *private_data);
+struct analog_pvt *analog_new(enum analog_sigtype signallingtype, struct analog_callback *c, void *private_data);
+void analog_delete(struct analog_pvt *doomed);
void analog_free(struct analog_pvt *p);