]> sigrok.org Git - libsigrok.git/commitdiff
output_binary: rm TODO item
authorBert Vermeulen <redacted>
Thu, 6 May 2010 04:43:25 +0000 (21:43 -0700)
committerBert Vermeulen <redacted>
Fri, 7 May 2010 21:55:32 +0000 (23:55 +0200)
Yes, disabled probes are stripped by the filter before the
output module even gets data.

output/output_binary.c

index 53240eebf8a80da4e471c423f1f771b7a0b12b56..80b1447f75d9eabfa06488e5b3d4bf2f0ae26bd4 100644 (file)
@@ -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;