Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 06603fe1 authored by Sijie Chen's avatar Sijie Chen
Browse files

[CrashReporting] Correct guest arch init

Init guest arch to NONE, otherwise Arm32 will be used.

Bug: 288392666
Test: NA
Change-Id: Ib92b0351401b700a18d03e21a68569c2811d163c
parent cdd4cb7d
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ using android::base::unique_fd;

// This stores guest architecture. When the architecture is supported, tombstone file will output
// guest state information.
static Architecture g_guest_arch;
static Architecture g_guest_arch = Architecture::NONE;

static bool pid_contains_tid(int pid_proc_fd, pid_t tid) {
  struct stat st;
@@ -789,10 +789,6 @@ int main(int argc, char** argv) {
      ATRACE_NAME("engrave_tombstone");
      unwindstack::ArchEnum regs_arch = unwindstack::ARCH_UNKNOWN;
      switch (g_guest_arch) {
        case Architecture::ARM32: {
          regs_arch = unwindstack::ARCH_ARM;
          break;
        }
        case Architecture::ARM64: {
          regs_arch = unwindstack::ARCH_ARM64;
          break;