]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/tondaj-sl-814/api.c
Consistently use g_malloc0() for allocating devc.
[libsigrok.git] / src / hardware / tondaj-sl-814 / api.c
index 69aa30e90eb6e2bbcc0f8d65d36d5894a20efffe..12026c35ca82983ba604d3eaa3b7b389c0e23285 100644 (file)
@@ -88,11 +88,7 @@ static GSList *scan(GSList *options)
        sdi->status = SR_ST_INACTIVE;
        sdi->vendor = g_strdup("Tondaj");
        sdi->model = g_strdup("SL-814");
-
-       if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
-               sr_err("Device context malloc failed.");
-               return NULL;
-       }
+       devc = g_malloc0(sizeof(struct dev_context));
 
        if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
                return NULL;