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

Commit f4b0b797 authored by Colin Cross's avatar Colin Cross
Browse files

Fix logging errors inside ALOGV

Fix errors exposed by adding checking to disabled ALOGVs.

Change-Id: I36b77bb0ad8dc7661b0f834f20d1179b86134d57
parent 71de56a0
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -93,7 +93,8 @@ bool BacktraceMap::ParseLine(const char* line, backtrace_map_t* map) {
  }
  }


  ALOGV("Parsed map: start=%p, end=%p, flags=%x, name=%s",
  ALOGV("Parsed map: start=%p, end=%p, flags=%x, name=%s",
        map->start, map->end, map->flags, map->name.c_str());
        reinterpret_cast<void*>(map->start), reinterpret_cast<void*>(map->end),
        map->flags, map->name.c_str());
  return true;
  return true;
}
}


+1 −1
Original line number Original line Diff line number Diff line
@@ -279,7 +279,7 @@ static int64_t EntryToIndex(const ZipEntryName* hash_table,
    ent = (ent + 1) & (hash_table_size - 1);
    ent = (ent + 1) & (hash_table_size - 1);
  }
  }


  ALOGV("Zip: Unable to find entry %.*s", name_length, name);
  ALOGV("Zip: Unable to find entry %.*s", length, name);
  return kEntryNotFound;
  return kEntryNotFound;
}
}