From 1149fa6ece3567c466008a04ae8a830a63bafdaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sat, 9 Nov 2013 10:13:47 +0100 Subject: [PATCH] CID 1108447 Uninitialized scalar field --- src/add-ons/kernel/busses/random/VirtioRNGDevice.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/add-ons/kernel/busses/random/VirtioRNGDevice.cpp b/src/add-ons/kernel/busses/random/VirtioRNGDevice.cpp index 7aa9ae0838..2e569c8d38 100644 --- a/src/add-ons/kernel/busses/random/VirtioRNGDevice.cpp +++ b/src/add-ons/kernel/busses/random/VirtioRNGDevice.cpp @@ -28,7 +28,8 @@ VirtioRNGDevice::VirtioRNGDevice(device_node *node) fVirtio(NULL), fVirtioDevice(NULL), fStatus(B_NO_INIT), - fOffset(BUFFER_SIZE) + fOffset(BUFFER_SIZE), + fExpectsInterrupt(false) { CALLED();