summaryrefslogtreecommitdiff
path: root/include/asterisk/app.h
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2012-03-14 22:41:21 +0000
committerRussell Bryant <russell@russellbryant.com>2012-03-14 22:41:21 +0000
commit28881524dc62717a63df3f4780173b798f2802ee (patch)
treeaf25f3a670d258e61a2a4150d590bbd566eafa4f /include/asterisk/app.h
parent9b31bd3cd83b50e0843f42b70d5e111287fa8107 (diff)
app.h: Always initialize AST_DECLARE_APP_ARGS().
This patch ensures that the struct defined by AST_DECLARE_APP_ARGS() is always fully initialized. I'm not sure if this fixes any real bugs, but it silences a bunch of warnings from coverity, and is generally a good thing to do anyway. ........ Merged revisions 359452 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 359454 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@359456 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/app.h')
-rw-r--r--include/asterisk/app.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/app.h b/include/asterisk/app.h
index 359c2b1a6..5f79b3570 100644
--- a/include/asterisk/app.h
+++ b/include/asterisk/app.h
@@ -452,7 +452,7 @@ int ast_app_group_list_unlock(void);
ast_app_separate_args() will perform that function before parsing
the arguments.
*/
-#define AST_DECLARE_APP_ARGS(name, arglist) AST_DEFINE_APP_ARGS_TYPE(, arglist) name
+#define AST_DECLARE_APP_ARGS(name, arglist) AST_DEFINE_APP_ARGS_TYPE(, arglist) name = { 0, }
/*!
\brief Define a structure type to hold an application's arguments.