From: Luigi Rizzo Date: Mon, 24 Jul 2006 11:45:06 +0000 (+0000) Subject: fix uninitialized variable X-Git-Tag: 1.4.0-beta1~525 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0ef036696bb844405865e886d52177413768354;p=thirdparty%2Fasterisk.git fix uninitialized variable git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38148 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_oss.c b/channels/chan_oss.c index 548e8d6dd7..48af9768e9 100644 --- a/channels/chan_oss.c +++ b/channels/chan_oss.c @@ -945,7 +945,7 @@ static int oss_fixup(struct ast_channel *oldchan, struct ast_channel *newchan) static int oss_indicate(struct ast_channel *c, int cond, const void *data, size_t datalen) { struct chan_oss_pvt *o = c->tech_pvt; - int res; + int res = -1; switch(cond) { case AST_CONTROL_BUSY: @@ -970,6 +970,7 @@ static int oss_indicate(struct ast_channel *c, int cond, const void *data, size_ ast_verbose( " << Console Has Been Retrieved from Hold >> \n"); ast_moh_stop(c); break; + default: ast_log(LOG_WARNING, "Don't know how to display condition %d on %s\n",