* client_read_sslblob(): don't use uninitialized values.
authorWilfried Göesgens <willi@citadel.org>
Thu, 25 Mar 2010 23:12:09 +0000 (23:12 +0000)
committerWilfried Göesgens <willi@citadel.org>
Thu, 25 Mar 2010 23:12:09 +0000 (23:12 +0000)
citadel/modules/crypto/serv_crypto.c

index 7e470153731135902a67ca2d12164c602d77d34a..a5b5632398e4bd7370feb63b52f12b9cefba7fe4 100644 (file)
@@ -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);