]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/cem-dt-885x/api.c
Consistently use g_malloc0() for allocating devc.
[libsigrok.git] / src / hardware / cem-dt-885x / api.c
index c8ca2b8f7a648b9003aa1eb9aee05052a6961ae2..62f580c5d8a583dae0250018b4113a87a1decd9e 100644 (file)
@@ -113,11 +113,7 @@ static GSList *scan(GSList *options)
                        sdi->status = SR_ST_INACTIVE;
                        sdi->vendor = g_strdup("CEM");
                        sdi->model = g_strdup("DT-885x");
-
-                       if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
-                               sr_dbg("Device context malloc failed.");
-                               return NULL;
-                       }
+                       devc = g_malloc0(sizeof(struct dev_context));
                        devc->cur_mqflags = 0;
                        devc->recording = -1;
                        devc->cur_meas_range = 0;