From 2633767789e4264b13ef91a684accf734fb4e94f Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Wed, 26 Oct 2011 21:55:51 -0700 Subject: Fixing more broken and split doc comments. (bzr r10697) --- src/io/base64stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/io/base64stream.cpp') diff --git a/src/io/base64stream.cpp b/src/io/base64stream.cpp index c90f3760b..0b20ef95a 100644 --- a/src/io/base64stream.cpp +++ b/src/io/base64stream.cpp @@ -1,4 +1,4 @@ -/** +/* * Base64-enabled input and output streams * * This class allows easy encoding and decoding -- cgit v1.2.3 From d0a75e28a727327d766b9050cda471a12e799511 Mon Sep 17 00:00:00 2001 From: Kris De Gussem Date: Sat, 19 Nov 2011 19:53:12 +0100 Subject: variable initialisation (bzr r10746) --- src/io/base64stream.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/io/base64stream.cpp') diff --git a/src/io/base64stream.cpp b/src/io/base64stream.cpp index 0b20ef95a..0a28a8cc3 100644 --- a/src/io/base64stream.cpp +++ b/src/io/base64stream.cpp @@ -51,12 +51,15 @@ static int base64decode[] = * */ Base64InputStream::Base64InputStream(InputStream &sourceStream) - : BasicInputStream(sourceStream) + : BasicInputStream(sourceStream), + outCount(0), + padCount(0), + done(false) { - outCount = 0; - padCount = 0; - closed = false; - done = false; + for (int k=0;k<3;k++) + { + outBytes[k]=0; + } } /** -- cgit v1.2.3