Merge "Make sure the VehiclePropValue object is initialized" into main am: c61a19bc28
Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2871786 Change-Id: I8ee9ab3fe6151bdbd73a9a16926b528d6bb3924a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
eb9c7af3e3
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ namespace V2_0 {
|
|||
|
||||
std::unique_ptr<VehiclePropValue> createVehiclePropValue(
|
||||
VehiclePropertyType type, size_t vecSize) {
|
||||
auto val = std::unique_ptr<VehiclePropValue>(new VehiclePropValue);
|
||||
auto val = std::unique_ptr<VehiclePropValue>(new VehiclePropValue());
|
||||
switch (type) {
|
||||
case VehiclePropertyType::INT32: // fall through
|
||||
case VehiclePropertyType::INT32_VEC: // fall through
|
||||
|
|
Loading…
Reference in a new issue