Merge "Modify hidl_pointer default constructor" am: 90d9b3593e am: 1342b19107 am: 1b3ff785c1
am: ebf9f45d76

Change-Id: I13dcea6c4cb03f4721bbbd65d35226432b21ada2
diff --git a/base/include/hidl/HidlInternal.h b/base/include/hidl/HidlInternal.h
index 1d6c035..24e17cb 100644
--- a/base/include/hidl/HidlInternal.h
+++ b/base/include/hidl/HidlInternal.h
@@ -41,7 +41,7 @@
 template<typename T>
 struct hidl_pointer {
     hidl_pointer()
-        : mPointer(nullptr) {
+        : _pad(0) {
     }
     hidl_pointer(T* ptr)
         : mPointer(ptr) {