Fix: sessiond ht_match_event() check if filter is NULL
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 15 Jun 2016 21:18:03 +0000 (17:18 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 28 Jun 2016 14:49:26 +0000 (10:49 -0400)
commit71e147d0f7a3e161f0814376955e57b2e8db70c8
tree0cba2a515dc01e853ee7bc33fe2e00ec6929fd9d
parentebaf531b307e210afe47741ede85d545cfac1ee4
Fix: sessiond ht_match_event() check if filter is NULL

It looks like an agent event's filter expression is NULL when
it's created with -a, for example:

    lttng enable-event -j -a

Since there's no check for this in ht_match_event(), strlen()
makes the session daemon segfault with this scenario:

    lttng create
    lttng enable-event -j -a
    lttng disable-event -j -a

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-sessiond/agent.c
This page took 0.026366 seconds and 5 git commands to generate.