X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=input%2Fbinary.c;h=d37a189a60a3ff57df10cf7f18890e097a22bec1;hb=3ebce226a2672ea4f0788f5f2a222586148aabc1;hp=1c786baebfc2c71ec6b833fa35ee7f16b476deea;hpb=4afdfd4628e9955af02a3ea619ecdfe469f9a9e2;p=libsigrok.git diff --git a/input/binary.c b/input/binary.c index 1c786bae..d37a189a 100644 --- a/input/binary.c +++ b/input/binary.c @@ -50,7 +50,7 @@ static int format_match(const char *filename) return TRUE; } -static int init(struct sr_input *in) +static int init(struct sr_input *in, const char *filename) { struct sr_probe *probe; int num_probes, i; @@ -58,6 +58,8 @@ static int init(struct sr_input *in) char *param; struct context *ctx; + (void)filename; + if (!(ctx = g_try_malloc0(sizeof(*ctx)))) { sr_err("Input format context malloc failed."); return SR_ERR_MALLOC; @@ -119,7 +121,7 @@ static int loadfile(struct sr_input *in, const char *filename) if (ctx->samplerate) { packet.type = SR_DF_META; packet.payload = &meta; - src = sr_config_make(SR_CONF_SAMPLERATE, (const void *)&ctx->samplerate); + src = sr_config_new(SR_CONF_SAMPLERATE, (const void *)&ctx->samplerate); meta.config = g_slist_append(NULL, src); sr_session_send(in->sdi, &packet); }