mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-28 07:01:07 +00:00
issue #5669
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7067 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
2005-11-10 Kevin P. Fleming <kpfleming@digium.com>
|
2005-11-10 Kevin P. Fleming <kpfleming@digium.com>
|
||||||
|
|
||||||
|
* include/asterisk/linkedlists.h (AST_LIST_HEAD_SET_NOLOCK): properly initialize tail pointer when list head is directly set (issue #5669)
|
||||||
|
|
||||||
* app.c (ast_app_parse_options): ok, so we aren't all perfect... let's make the while loop actually work properly here (issue #5684)
|
* app.c (ast_app_parse_options): ok, so we aren't all perfect... let's make the while loop actually work properly here (issue #5684)
|
||||||
|
|
||||||
* apps/app_disa.c (disa_exec): correct password file parsing (issue #5676)
|
* apps/app_disa.c (disa_exec): correct password file parsing (issue #5676)
|
||||||
|
|||||||
@@ -138,7 +138,7 @@ struct name { \
|
|||||||
*/
|
*/
|
||||||
#define AST_LIST_HEAD_SET(head, entry) do { \
|
#define AST_LIST_HEAD_SET(head, entry) do { \
|
||||||
(head)->first = (entry); \
|
(head)->first = (entry); \
|
||||||
(head)->last = NULL; \
|
(head)->last = (entry); \
|
||||||
ast_mutex_init(&(head)->lock); \
|
ast_mutex_init(&(head)->lock); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
@@ -152,7 +152,7 @@ struct name { \
|
|||||||
*/
|
*/
|
||||||
#define AST_LIST_HEAD_SET_NOLOCK(head, entry) do { \
|
#define AST_LIST_HEAD_SET_NOLOCK(head, entry) do { \
|
||||||
(head)->first = (entry); \
|
(head)->first = (entry); \
|
||||||
(head)->last = NULL; \
|
(head)->last = (entry); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|||||||
Reference in New Issue
Block a user