From 0dde0339cc55e1acd2e9d90db257e0fb87ad7b34 Mon Sep 17 00:00:00 2001 From: Android Tools Maintainers Date: Thu, 7 Jan 2021 12:08:42 +0000 Subject: [PATCH] image-space-dereference Gbp-Pq: Name image-space-dereference.patch --- runtime/gc/space/image_space.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/gc/space/image_space.cc b/runtime/gc/space/image_space.cc index 3e3d199..96fc7e0 100644 --- a/runtime/gc/space/image_space.cc +++ b/runtime/gc/space/image_space.cc @@ -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; -- 2.30.2