From 3e9886598d8ff3d9a2530d6c763cf62a301936c0 Mon Sep 17 00:00:00 2001
From: Joshua Colp <jcolp@digium.com>
Date: Mon, 23 Jul 2007 23:14:20 +0000
Subject: [PATCH] You need to put static in front of a static RWLIST
 declaration to make it really static... and don't call
 AST_RWLIST_HEAD_DESTROY on a statically declared list.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@76711 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 res/res_agi.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/res/res_agi.c b/res/res_agi.c
index 47c8ba8d8c..44ff18d435 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -1629,7 +1629,7 @@ static struct agi_command commands[MAX_COMMANDS] = {
 	{ { "wait", "for", "digit", NULL }, handle_waitfordigit, "Waits for a digit to be pressed", usage_waitfordigit , 0 },
 };
 
-AST_RWLIST_HEAD_STATIC(agi_commands, agi_command);
+static AST_RWLIST_HEAD_STATIC(agi_commands, agi_command);
 
 static int help_workhorse(int fd, char *match[])
 {
@@ -2169,7 +2169,6 @@ static int unload_module(void)
 	}
 	AST_RWLIST_TRAVERSE_SAFE_END
 	AST_RWLIST_UNLOCK(&agi_commands);
-	AST_RWLIST_HEAD_DESTROY(&agi_commands);
 	ast_unregister_application(eapp);
 	ast_unregister_application(deadapp);
 	return ast_unregister_application(app);
-- 
GitLab