Fix: off-by-one in sequence filter comparator
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sat, 8 Nov 2014 17:16:41 +0000 (12:16 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 12 Nov 2014 23:20:47 +0000 (18:20 -0500)
commit4db6ca96415350161cce90319d647f950cd8a62e
tree0be83f6d82cf594f03e59b3008e8f036a87239ba
parent353c9dc0b929bf980baabc384ac6a15d1fe856ea
Fix: off-by-one in sequence filter comparator

If we pass the following sequence as event input:
- field name "seqfield2"
- seq. len.: 4
- sequence array: "testA" (5 characters),

The following filters do not have the intended effect:
* 'seqfield2=="testA"'
  - expected: no match.
  - actual behavior: match.

* 'seqfield2=="test"'
  - expected: match.
  - actual behavior: no match.

This is caused by an off-by-one in the comparison with sequence length
in the filter bytecode interpreter.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
liblttng-ust/lttng-filter-interpreter.c
This page took 0.024595 seconds and 4 git commands to generate.