Static Code Analysis : Correctly initialize member variable in HostDevice constructor

This commit is contained in:
Mounir IDRASSI 2014-07-09 12:56:28 +02:00
parent 7bb812af66
commit 515495f2f3
1 changed files with 2 additions and 1 deletions

View File

@ -487,7 +487,8 @@ struct HostDevice
IsVirtualPartition (false),
HasUnencryptedFilesystem (false),
Removable (false),
Size (0)
Size (0),
SystemNumber((uint32) -1)
{
}