From a45a413db3bdce126d5cb28ed49b776fdebb4b1d Mon Sep 17 00:00:00 2001 From: kpfleming Date: Thu, 8 Nov 2007 05:28:47 +0000 Subject: improve linked-list macros in two ways: - the *_CURRENT macros no longer need the list head pointer argument - add AST_LIST_MOVE_CURRENT to encapsulate the remove/add operation when moving entries between lists git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89106 f38db490-d61c-443f-a65b-d21fe96a405b --- funcs/func_strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'funcs/func_strings.c') diff --git a/funcs/func_strings.c b/funcs/func_strings.c index 0ed4bc159..70ecc4c59 100644 --- a/funcs/func_strings.c +++ b/funcs/func_strings.c @@ -230,7 +230,7 @@ static void clearvar_prefix(struct ast_channel *chan, const char *prefix) int len = strlen(prefix); AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->varshead, var, entries) { if (strncasecmp(prefix, ast_var_name(var), len) == 0) { - AST_LIST_REMOVE_CURRENT(&chan->varshead, entries); + AST_LIST_REMOVE_CURRENT(entries); ast_free(var); } } -- cgit v1.2.3