From: Steve Murphy Date: Wed, 29 Aug 2007 21:30:26 +0000 (+0000) Subject: init newer so compile won't complain. X-Git-Tag: 1.6.0-beta1~3^2~1575 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=876ebb3ec706f8503c8c73e3e147cc044befe97f;p=thirdparty%2Fasterisk.git init newer so compile won't complain. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81363 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/config.c b/main/config.c index a701b238c5..7a44685b9e 100644 --- a/main/config.c +++ b/main/config.c @@ -634,7 +634,7 @@ int ast_variable_delete(struct ast_category *category, const char *variable, con int ast_variable_update(struct ast_category *category, const char *variable, const char *value, const char *match, unsigned int object) { - struct ast_variable *cur, *prev=NULL, *newer; + struct ast_variable *cur, *prev=NULL, *newer=NULL; for (cur = category->root; cur; prev = cur, cur = cur->next) { if (strcasecmp(cur->name, variable) ||