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

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