]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/saleae-logic16/api.c
Consistently use g_malloc0() for allocating devc.
[libsigrok.git] / src / hardware / saleae-logic16 / api.c
index c3aaacc52c0a83250848697b30298fa3cde1eabf..21ccd557b69a6865e8d1a6962f221d41cf9c647a 100644 (file)
@@ -212,8 +212,7 @@ static GSList *scan(GSList *options)
                        sdi->channels = g_slist_append(sdi->channels, ch);
                }
 
-               if (!(devc = g_try_malloc0(sizeof(struct dev_context))))
-                       return NULL;
+               devc = g_malloc0(sizeof(struct dev_context));
                devc->selected_voltage_range = VOLTAGE_RANGE_18_33_V;
                sdi->priv = devc;
                drvc->instances = g_slist_append(drvc->instances, sdi);