From aedb8d8ef646ed480296eb0a53513c74475cef08 Mon Sep 17 00:00:00 2001 From: Daniel Neus Date: Tue, 22 Dec 2015 21:50:43 +0100 Subject: some trivial compiler/PVS-Studio warning fixes --- src/lib/stream/rc4/rc4.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/stream') diff --git a/src/lib/stream/rc4/rc4.cpp b/src/lib/stream/rc4/rc4.cpp index 6146e2818..d94bf8164 100644 --- a/src/lib/stream/rc4/rc4.cpp +++ b/src/lib/stream/rc4/rc4.cpp @@ -111,6 +111,6 @@ void RC4::clear() /* * RC4 Constructor */ -RC4::RC4(size_t s) : SKIP(s), X(0), Y(0) {} +RC4::RC4(size_t s) : SKIP(s), X(0), Y(0), state(), buffer(), position(0) {} } -- cgit v1.2.3