From: Bert Vermeulen Date: Thu, 6 May 2010 04:43:25 +0000 (-0700) Subject: output_binary: rm TODO item X-Git-Tag: libsigrok-0.1.0~521 X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=c9c1c6458c15958d19d8cbac50f2e301479892a1;p=libsigrok.git output_binary: rm TODO item Yes, disabled probes are stripped by the filter before the output module even gets data. --- 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;