diff --git a/include/asterisk/linkedlists.h b/include/asterisk/linkedlists.h
index b503f5b75712bbe5a90f9774f3803563b2bdec5b..21e38761a6c846a186004cb13ef866fc595163f6 100644
--- a/include/asterisk/linkedlists.h
+++ b/include/asterisk/linkedlists.h
@@ -693,6 +693,9 @@ struct {								\
   \param list This is a pointer to the list to be appended.
   \param field This is the name of the field (declared using AST_LIST_ENTRY())
   used to link entries of this list together.
+
+  Note: The source list (the \a list parameter) will be empty after
+  calling this macro (the list entries are \b moved to the target list).
  */
 #define AST_LIST_APPEND_LIST(head, list, field) do {			\
       if (!(head)->first) {						\
@@ -702,6 +705,8 @@ struct {								\
 		(head)->last->field.next = (list)->first;		\
 		(head)->last = (list)->last;				\
       }									\
+      (list)->first = NULL;						\
+      (list)->last = NULL;						\
 } while (0)
 
 #define AST_RWLIST_APPEND_LIST AST_LIST_APPEND_LIST
diff --git a/main/channel.c b/main/channel.c
index ace4d4eb065e9a3b03cb94641da18b7b74eb1dfc..843c1dd2783c48b5987ac71aee0697ff896721da 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -3512,7 +3512,6 @@ static void clone_variables(struct ast_channel *original, struct ast_channel *cl
 	/* XXX Is this always correct?  We have to in order to keep MACROS working XXX */
 	if (AST_LIST_FIRST(&clone->varshead))
 		AST_LIST_APPEND_LIST(&original->varshead, &clone->varshead, entries);
-	AST_LIST_HEAD_INIT_NOLOCK(&clone->varshead);
 
 	/* then, dup the varshead list into the clone */