MINOR: filters: Filters must define the callbacks struct during config parsing
diff --git a/src/filters.c b/src/filters.c
index c277c12..cceca50 100644
--- a/src/filters.c
+++ b/src/filters.c
@@ -229,6 +229,11 @@
 			          args[0], args[1], args[cur_arg]);
 			goto error;
 		}
+		if (fconf->ops == NULL) {
+			memprintf(err, "'%s %s' : no callbacks defined.",
+			          args[0], args[1]);
+			goto error;
+		}
 
 		LIST_ADDQ(&curpx->filter_configs, &fconf->list);
 	}