X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fpipistrello-ols%2Fapi.c;h=acbfcda0289606b66be4086ae0ef8c62fc7a6215;hb=b6085eb17901306b686a9269e5d2660d88561dc3;hp=2db23fd042eaea1ea39a1de1c194576b5d1d0d78;hpb=71580ef1f3cf1a5979a2c52e9819de34d525ecbf;p=libsigrok.git diff --git a/src/hardware/pipistrello-ols/api.c b/src/hardware/pipistrello-ols/api.c index 2db23fd0..acbfcda0 100644 --- a/src/hardware/pipistrello-ols/api.c +++ b/src/hardware/pipistrello-ols/api.c @@ -100,10 +100,7 @@ static GSList *scan(GSList *options) devices = NULL; /* Allocate memory for our private device context. */ - if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) { - sr_err("Device context malloc failed."); - goto err_free_nothing; - } + devc = g_malloc0(sizeof(struct dev_context)); /* Device-specific settings */ devc->max_samplebytes = devc->max_samplerate = devc->protocol_version = 0; @@ -204,7 +201,6 @@ err_free_ftdi_buf: g_free(devc->ftdi_buf); err_free_devc: g_free(devc); -err_free_nothing: return NULL; }