X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=liblttng-ust%2Flttng-bytecode-validator.c;h=b5bc49041c61c8d0ce115ffe9f365ccb2139a83b;hb=7ee76145ae6a7efc03968571b9e4a22d46e92929;hp=c5dc62729bcc1843467463eaffde240ab20b511c;hpb=c0c0989ab70574e09b2f7e8b48c2da6af664a849;p=lttng-ust.git diff --git a/liblttng-ust/lttng-bytecode-validator.c b/liblttng-ust/lttng-bytecode-validator.c index c5dc6272..b5bc4904 100644 --- a/liblttng-ust/lttng-bytecode-validator.c +++ b/liblttng-ust/lttng-bytecode-validator.c @@ -255,11 +255,11 @@ int validate_get_symbol(struct bytecode_runtime *bytecode, const char *str, *str_limit; size_t len_limit; - if (sym->offset >= bytecode->p.bc->bc.len - bytecode->p.bc->bc.reloc_offset) + if (sym->offset >= bytecode->p.priv->bc->bc.len - bytecode->p.priv->bc->bc.reloc_offset) return -EINVAL; - str = bytecode->p.bc->bc.data + bytecode->p.bc->bc.reloc_offset + sym->offset; - str_limit = bytecode->p.bc->bc.data + bytecode->p.bc->bc.len; + str = bytecode->p.priv->bc->bc.data + bytecode->p.priv->bc->bc.reloc_offset + sym->offset; + str_limit = bytecode->p.priv->bc->bc.data + bytecode->p.priv->bc->bc.len; len_limit = str_limit - str; if (strnlen(str, len_limit) == len_limit) return -EINVAL; @@ -1975,7 +1975,7 @@ int lttng_bytecode_validate(struct bytecode_runtime *bytecode) goto end; } dbg_printf("Validating op %s (%u)\n", - print_op((unsigned int) *(bytecode_opcode_t *) pc), + lttng_bytecode_print_op((unsigned int) *(bytecode_opcode_t *) pc), (unsigned int) *(bytecode_opcode_t *) pc); /*