From: Wilfried Göesgens Date: Thu, 25 Mar 2010 23:12:09 +0000 (+0000) Subject: * client_read_sslblob(): don't use uninitialized values. X-Git-Tag: v7.86~285 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=c1493813eb0e700c080850aa294b5d3a926a3010 * client_read_sslblob(): don't use uninitialized values. --- diff --git a/citadel/modules/crypto/serv_crypto.c b/citadel/modules/crypto/serv_crypto.c index 7e4701537..a5b563239 100644 --- a/citadel/modules/crypto/serv_crypto.c +++ b/citadel/modules/crypto/serv_crypto.c @@ -561,7 +561,7 @@ int client_read_sslblob(StrBuf *Target, long bytes, int timeout) { long bufremain; long baselen; - int retval; + int retval = 0; CitContext *CCC = CC; baselen = StrLength(Target);