From: Android Tools Maintainers Date: Tue, 5 Apr 2022 11:39:26 +0000 (+0100) Subject: image-space-dereference X-Git-Tag: archive/raspbian/11.0.0+r48-4+rpi1~1^2^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2ecc2007d780be26851d307adb9d13a8ed3d0109;p=android-platform-art.git image-space-dereference Gbp-Pq: Name image-space-dereference.patch --- 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;