image-space-dereference
authorAndroid Tools Maintainers <android-tools-devel@lists.alioth.debian.org>
Thu, 7 Jan 2021 12:08:42 +0000 (12:08 +0000)
committerHans-Christoph Steiner <hans@eds.org>
Thu, 7 Jan 2021 12:08:42 +0000 (12:08 +0000)
Gbp-Pq: Name image-space-dereference.patch

runtime/gc/space/image_space.cc

index 3e3d199d7bb58fdd373c00281ede0a2ae3dcd4c3..96fc7e0f5f169fc69dec1aaaa18a27ad5fe8de6f 100644 (file)
@@ -1432,7 +1432,7 @@ class ImageSpace::BootImageLoader {
 
     if (VLOG_IS_ON(image)) {
       LOG(INFO) << "ImageSpace::BootImageLoader::LoadFromSystem exiting "
-          << boot_image_spaces->front();
+          << *boot_image_spaces->front();
       logger.Dump(LOG_STREAM(INFO));
     }
     return true;
@@ -1459,7 +1459,7 @@ class ImageSpace::BootImageLoader {
 
     if (VLOG_IS_ON(image)) {
       LOG(INFO) << "ImageSpace::BootImageLoader::LoadFromDalvikCache exiting "
-          << boot_image_spaces->front();
+          << *boot_image_spaces->front();
       logger.Dump(LOG_STREAM(INFO));
     }
     return true;