Set pointer to NULL in filter_slot_flush

This commit is contained in:
Carsten Wolfrum 2020-05-19 14:51:01 +02:00
parent fd964fa47b
commit 88894dad05

View File

@ -67,6 +67,7 @@ void filter_slot_flush(struct filter_slot *fs)
filter_slot_stop(fs);
fs->filter = NULL;
rfree(fs->p);
fs->p = NULL;
}
void filter_slot_start(struct filter_slot *fs, void (*reloader)(struct filter_slot *))