X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fnorma-dmm%2Fapi.c;h=ab9b36e292d047feb3713e1658c7dcae8ee96c0b;hb=f9dada0b60fdde85c8f5605b136f2c37bc42be85;hp=f95e7398701c3e9e6923f804f1753f55a48a2fe6;hpb=eead2782427ee5da9b793527f9484ac827a7bec5;p=libsigrok.git diff --git a/src/hardware/norma-dmm/api.c b/src/hardware/norma-dmm/api.c index f95e7398..ab9b36e2 100644 --- a/src/hardware/norma-dmm/api.c +++ b/src/hardware/norma-dmm/api.c @@ -144,9 +144,11 @@ static GSList *do_scan(struct sr_dev_driver* drv, GSList *options) auxtype = xgittoint(buf[7]); sr_spew("%s %s DMM %s detected!", get_brandstr(drv), get_typestr(auxtype, drv), buf + 9); - if (!(sdi = sr_dev_inst_new(SR_ST_INACTIVE, - get_brandstr(drv), get_typestr(auxtype, drv), buf + 9))) - return NULL; + sdi = sr_dev_inst_new(); + sdi->status = SR_ST_INACTIVE; + sdi->vendor = g_strdup(get_brandstr(drv)); + sdi->model = g_strdup(get_typestr(auxtype, drv)); + sdi->version = g_strdup(buf + 9); if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) { sr_err("Device context malloc failed."); return NULL;