From 560068617a654302b79f5997e7cdc54c56a7f609 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Tue, 29 Jun 2004 01:43:55 +0000 Subject: [PATCH] Make sure pollres is initialized to 0 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3336 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_zap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_zap.c b/channels/chan_zap.c index e8851c47f6..eb42be522a 100755 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -5320,7 +5320,7 @@ static int handle_init_event(struct zt_pvt *i, int event) static void *do_monitor(void *data) { - int count, res, res2, spoint, pollres; + int count, res, res2, spoint, pollres=0; struct zt_pvt *i; struct zt_pvt *last = NULL; time_t thispass = 0, lastpass = 0;