fix: all functions have declarations (-Wmissing-prototypes -Wold-style-definition)
[lttng-ust.git] / liblttng-ust / lttng-bytecode-validator.c
index b5bc49041c61c8d0ce115ffe9f365ccb2139a83b..68b9e008a111144aa6fb77ddf2c908dbc5b7d911 100644 (file)
@@ -17,6 +17,7 @@
 #include "lttng-hash-helper.h"
 #include "string-utils.h"
 #include "ust-events-internal.h"
+#include "ust-helper.h"
 
 /*
  * Number of merge points for hash table size. Hash table initialized to
@@ -255,11 +256,11 @@ int validate_get_symbol(struct bytecode_runtime *bytecode,
        const char *str, *str_limit;
        size_t len_limit;
 
-       if (sym->offset >= bytecode->p.priv->bc->bc.len - bytecode->p.priv->bc->bc.reloc_offset)
+       if (sym->offset >= bytecode->p.bc->bc.len - bytecode->p.bc->bc.reloc_offset)
                return -EINVAL;
 
-       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;
+       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;
        len_limit = str_limit - str;
        if (strnlen(str, len_limit) == len_limit)
                return -EINVAL;
This page took 0.023411 seconds and 4 git commands to generate.