projects
/
asterisk/asterisk.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
/ remove extrenous NULL at end of function
[asterisk/asterisk.git]
/
channels
/
chan_vpb.c
diff --git
a/channels/chan_vpb.c
b/channels/chan_vpb.c
index
e256212
..
ce3005f
100755
(executable)
--- a/
channels/chan_vpb.c
+++ b/
channels/chan_vpb.c
@@
-2104,7
+2104,7
@@
int unload_module()
ast_mutex_destroy(&bridge_lock);
for(int i = 0; i < max_bridges; i++ ) {
ast_mutex_destroy(&bridges[i].lock);
- pthread_cond_destroy(&bridges[i].cond, NULL);
+ pthread_cond_destroy(&bridges[i].cond);
}
free(bridges);