Skip to content

Commit

Permalink
Merge branch 'coredump_fixes_v5.2' into 'release/v5.2'
Browse files Browse the repository at this point in the history
Coredump fixes v5.2

See merge request espressif/esp-idf!33084
  • Loading branch information
jack0c committed Aug 28, 2024
2 parents 9f48636 + 127e2e4 commit 4c5569f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/espcoredump/src/core_dump_elf.c
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ static void elf_parse_version_info(esp_core_dump_summary_t *summary, void *data)
{
core_dump_elf_version_info_t *version = (core_dump_elf_version_info_t *)data;
summary->core_dump_version = version->version;
memcpy(summary->app_elf_sha256, version->app_elf_sha256, ELF_APP_SHA256_SIZE);
memcpy(summary->app_elf_sha256, version->app_elf_sha256, sizeof(summary->app_elf_sha256));
ESP_COREDUMP_LOGD("Core dump version 0x%x", summary->core_dump_version);
ESP_COREDUMP_LOGD("App ELF SHA2 %s", (char *)summary->app_elf_sha256);
}
Expand Down

0 comments on commit 4c5569f

Please # to comment.