Closed omgitsmoe closed 9 months ago
Win32_DiskDrive.Size is a uint64, but was being accessed as string value, which resulted in a nullptr dereference.
Win32_DiskDrive.Size
uint64
Hope the static_cast is fine, otherwise you'd need to change the type to an uint64_t.
static_cast
uint64_t
Win32_DiskDrive.Size
is auint64
, but was being accessed as string value, which resulted in a nullptr dereference.Hope the
static_cast
is fine, otherwise you'd need to change the type to anuint64_t
.