X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Flttng-elf.c;fp=src%2Fcommon%2Flttng-elf.c;h=63e658177c67f9aee422830d055c9b7987544a1e;hp=91afcfdea3d19ae0435d655e4b49465064832d07;hb=ee5b998f96be26a66976fd8afbe712e1ff43f411;hpb=b7e59a889b23e90f483f1aec9ca591dd307d32cb diff --git a/src/common/lttng-elf.c b/src/common/lttng-elf.c index 91afcfdea..63e658177 100644 --- a/src/common/lttng-elf.c +++ b/src/common/lttng-elf.c @@ -646,13 +646,14 @@ char *lttng_elf_get_section_data(struct lttng_elf *elf, int ret; off_t section_offset; char *data; - const size_t max_alloc_size = min_t(size_t, MAX_SECTION_DATA_SIZE, - elf->file_size); + size_t max_alloc_size; if (!elf || !shdr) { goto error; } + max_alloc_size = min_t(size_t, MAX_SECTION_DATA_SIZE, elf->file_size); + section_offset = shdr->sh_offset; if (lseek(elf->fd, section_offset, SEEK_SET) < 0) { PERROR("Error seeking to section offset");