dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 138360 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r138360 | jpeeler | 2008-08-15 20:12:18 -0500 (Fri, 15 Aug 2008) | 1 line

fixes use count to properly decrement if an active dahdi channel is destroyed allowing module to be unloaded
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@138361 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
jpeeler 2008-08-16 01:13:26 +00:00
parent 765aca3dfc
commit 962eea31ad
1 changed files with 1 additions and 0 deletions

View File

@ -7645,6 +7645,7 @@ static int dahdi_destroy_channel_bynum(int channel)
int x = DAHDI_FLASH;
ioctl(tmp->subs[SUB_REAL].dfd, DAHDI_HOOK, &x); /* important to create an event for dahdi_wait_event to register so that all ss_threads terminate */
destroy_channel(prev, tmp, 1);
ast_module_unref(ast_module_info->self);
return RESULT_SUCCESS;
}
prev = tmp;