]> sigrok.org Git - sigrok-cli.git/commitdiff
Use new output API receive() function
authorBert Vermeulen <redacted>
Sat, 27 Apr 2013 15:34:00 +0000 (17:34 +0200)
committerBert Vermeulen <redacted>
Sat, 27 Apr 2013 15:34:00 +0000 (17:34 +0200)
sigrok-cli.c

index ade15cd31f137b00226f80fcbd857d7dc6bcfa69..a1ab7362ce8cfceb7bba44dc0a4e601579c367eb 100644 (file)
@@ -872,15 +872,15 @@ static void datafeed_in(const struct sr_dev_inst *sdi,
                break;
        }
 
                break;
        }
 
-       if (o && o->format->recv) {
-               out = o->format->recv(o, sdi, packet);
-               if (out && out->len) {
+       if (o && o->format->receive) {
+               if (o->format->receive(o, sdi, packet, &out) == SR_OK && out) {
                        fwrite(out->str, 1, out->len, outfile);
                        fflush(outfile);
                        fwrite(out->str, 1, out->len, outfile);
                        fflush(outfile);
+                       g_string_free(out, TRUE);
                }
        }
 
                }
        }
 
-       /* SR_DF_END needs to be handled after the output module's recv()
+       /* SR_DF_END needs to be handled after the output module's receive()
         * is called, so it can properly clean up that module etc. */
        if (packet->type == SR_DF_END) {
                g_debug("cli: Received SR_DF_END");
         * is called, so it can properly clean up that module etc. */
        if (packet->type == SR_DF_END) {
                g_debug("cli: Received SR_DF_END");