diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-07-09 12:56:28 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:20:51 +0100 |
commit | 515495f2f3f2557e3a9189291f9b07dea11dc95c (patch) | |
tree | 3d0e40dd69641c5b039e7bcea93c0fd74ca7a328 /src/Common/Dlgcode.h | |
parent | 7bb812af66967a0c942f130cc94c25341e17950a (diff) | |
download | VeraCrypt-515495f2f3f2557e3a9189291f9b07dea11dc95c.tar.gz VeraCrypt-515495f2f3f2557e3a9189291f9b07dea11dc95c.zip |
Static Code Analysis : Correctly initialize member variable in HostDevice constructor
Diffstat (limited to 'src/Common/Dlgcode.h')
-rw-r--r-- | src/Common/Dlgcode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Common/Dlgcode.h b/src/Common/Dlgcode.h index 74e1a59a..588fea41 100644 --- a/src/Common/Dlgcode.h +++ b/src/Common/Dlgcode.h @@ -487,7 +487,8 @@ struct HostDevice IsVirtualPartition (false),
HasUnencryptedFilesystem (false),
Removable (false),
- Size (0)
+ Size (0),
+ SystemNumber((uint32) -1)
{
}
|