[svn-commits] tilghman: branch 1.4 r148987 - /branches/1.4/apps/app_voicemail.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 14 14:03:09 CDT 2008


Author: tilghman
Date: Tue Oct 14 14:03:08 2008
New Revision: 148987

URL: http://svn.digium.com/view/asterisk?view=rev&rev=148987
Log:
Some compilers warn, some don't.  Fixing.

Modified:
    branches/1.4/apps/app_voicemail.c

Modified: branches/1.4/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_voicemail.c?view=diff&rev=148987&r1=148986&r2=148987
==============================================================================
--- branches/1.4/apps/app_voicemail.c (original)
+++ branches/1.4/apps/app_voicemail.c Tue Oct 14 14:03:08 2008
@@ -3055,7 +3055,7 @@
 	char enc_cidnum[256] = "", enc_cidname[256] = "";
 	struct tm tm;
 	char *passdata = NULL, *passdata2;
-	size_t len_passdata, len_passdata2, tmplen;
+	size_t len_passdata = 0, len_passdata2, tmplen;
 #ifdef IMAP_STORAGE
 #define ENDL "\r\n"
 #else




More information about the svn-commits mailing list