From c9c1c6458c15958d19d8cbac50f2e301479892a1 Mon Sep 17 00:00:00 2001 From: Bert Vermeulen Date: Wed, 5 May 2010 21:43:25 -0700 Subject: [PATCH] output_binary: rm TODO item Yes, disabled probes are stripped by the filter before the output module even gets data. --- output/output_binary.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/output/output_binary.c b/output/output_binary.c index 53240eeb..80b1447f 100644 --- a/output/output_binary.c +++ b/output/output_binary.c @@ -59,9 +59,7 @@ static int data(struct output *o, char *data_in, uint64_t length_in, if (outbuf == NULL) return SIGROK_ERR_MALLOC; - /* TODO: Are disabled probes handled correctly? */ memcpy(outbuf, data_in, length_in); - *data_out = outbuf; *length_out = outsize;