From: Android Tools Maintainers Date: Thu, 7 Jan 2021 12:08:42 +0000 (+0000) Subject: image-space-dereference X-Git-Tag: archive/raspbian/10.0.0+r36-3+rpi1~12^2~10 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0dde0339cc55e1acd2e9d90db257e0fb87ad7b34;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;