Sync lttng-modules ABI version in internal kernel-ioctl.h
[lttng-tools.git] / src / common / lttng-elf.c
index 91afcfdea3d19ae0435d655e4b49465064832d07..63e658177c67f9aee422830d055c9b7987544a1e 100644 (file)
@@ -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");
This page took 0.024214 seconds and 5 git commands to generate.