]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/colead-slm/api.c
Consistently use g_malloc0() for allocating devc.
[libsigrok.git] / src / hardware / colead-slm / api.c
index e879a102189c19ad4f7c8df2091c34c27514d3ff..c7d36678601b485ba1f55fa6e2c847a4f455d3a2 100644 (file)
@@ -86,15 +86,9 @@ static GSList *scan(GSList *options)
        sdi->status = SR_ST_INACTIVE;
        sdi->vendor = g_strdup("Colead");
        sdi->model = g_strdup("SL-5868P");
-
-       if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
-               sr_dbg("Device context malloc failed.");
-               return NULL;
-       }
-
+       devc = g_malloc0(sizeof(struct dev_context));
        if (!(sdi->conn = sr_serial_dev_inst_new(conn, serialcomm)))
                return NULL;
-
        sdi->inst_type = SR_INST_SERIAL;
        sdi->priv = devc;
        sdi->driver = di;