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

Change-Id: Ib87fb6a79c346e6afc2def3da1b9b661e3d74907
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) {