diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-02-01 00:07:04 +1100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-01 00:07:04 +1100 |
commit | 0f2fac265fb876de971a2849bec69c51161d7a74 (patch) | |
tree | 396cc32dad86fea20a0d709bb4b63bc2c27bb7ae /profile.c | |
parent | 6f66781b1fe99d0157abc0a7f2220e4adaf2e431 (diff) | |
download | subsurface-0f2fac265fb876de971a2849bec69c51161d7a74.tar.gz |
Clear the list of events when closing data file
When the data file is closed we should reset the events that we offer for
filtering.
Reported-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -313,6 +313,11 @@ void evn_foreach(void (*callback)(const char *, int *, void *), void *data) } } +void clear_events(void) +{ + evn_used = 0; +} + void remember_event(const char *eventname) { int i = 0, len; |