summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-07-27 04:44:49 +0000
committerRussell Bryant <russell@russellbryant.com>2006-07-27 04:44:49 +0000
commit03356c2a4d5115e8ebcf425a17fa1bc6e3d5194f (patch)
tree47d903050efcb3d5658d5b053e6c7f92e49f7904 /res
parent2842015acacc1a2a70819f7a145d9b2d860447cc (diff)
fix seg fault when the parked call that timed out was the last one in the list
of parked calls (fixes issue #7565) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38330 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 8926afa78..85ed558da 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1567,7 +1567,7 @@ static void *do_parking_thread(void *ignore)
if (ast_context_remove_extension2(con, pt->parkingexten, 1, NULL))
ast_log(LOG_WARNING, "Whoa, failed to remove the extension!\n");
else
- notify_metermaids(pu->parkingexten, parking_con);
+ notify_metermaids(pt->parkingexten, parking_con);
} else
ast_log(LOG_WARNING, "Whoa, no parking context?\n");
free(pt);