]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/link-mso19/api.c
Consistently use g_malloc0() for allocating devc.
[libsigrok.git] / src / hardware / link-mso19 / api.c
index c1162c982207f2c9f01317edc8b08a8563f343e9..5112fe285d2d0103b41e9c1b5f4f4421ce1c63f4 100644 (file)
@@ -178,10 +178,7 @@ static GSList *scan(GSList *options)
 
                //Create the device context and set its params
                struct dev_context *devc;
-               if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
-                       sr_err("Device context malloc failed.");
-                       return devices;
-               }
+               devc = g_malloc0(sizeof(struct dev_context));
 
                if (mso_parse_serial(iSerial, iProduct, devc) != SR_OK) {
                        sr_err("Invalid iSerial: %s.", iSerial);