From 03356c2a4d5115e8ebcf425a17fa1bc6e3d5194f Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 27 Jul 2006 04:44:49 +0000 Subject: [PATCH] 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 --- res/res_features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_features.c b/res/res_features.c index 8926afa787..85ed558da8 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);