diff options
Diffstat (limited to 'src/entropy/rdrand')
-rw-r--r-- | src/entropy/rdrand/rdrand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entropy/rdrand/rdrand.cpp b/src/entropy/rdrand/rdrand.cpp index 51b2bd5f6..0dae697c8 100644 --- a/src/entropy/rdrand/rdrand.cpp +++ b/src/entropy/rdrand/rdrand.cpp @@ -40,7 +40,7 @@ void Intel_Rdrand::poll(Entropy_Accumulator& accum) for(size_t i = 0; i != RDRAND_POLLS; ++i) { - unsigned int r; + unsigned int r = 0; #if BOTAN_USE_GCC_INLINE_ASM int cf = 0; |