From 2ecc2007d780be26851d307adb9d13a8ed3d0109 Mon Sep 17 00:00:00 2001 From: Android Tools Maintainers Date: Tue, 5 Apr 2022 12:39:26 +0100 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