ipdbg-la: Drop unneeded g_malloc0() checks for small allocations.
This commit is contained in:
parent
13ac501acd
commit
fac36d0a77
|
@ -97,11 +97,6 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
struct sr_dev_inst *sdi = g_malloc0(sizeof(struct sr_dev_inst));
|
struct sr_dev_inst *sdi = g_malloc0(sizeof(struct sr_dev_inst));
|
||||||
if (!sdi) {
|
|
||||||
sr_err("no possible to allocate sr_dev_inst");
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
sdi->status = SR_ST_INACTIVE;
|
sdi->status = SR_ST_INACTIVE;
|
||||||
sdi->vendor = g_strdup("ipdbg.org");
|
sdi->vendor = g_strdup("ipdbg.org");
|
||||||
sdi->model = g_strdup("IPDBG LA");
|
sdi->model = g_strdup("IPDBG LA");
|
||||||
|
|
|
@ -89,7 +89,6 @@ SR_PRIV struct ipdbg_la_tcp *ipdbg_la_tcp_new(void)
|
||||||
struct ipdbg_la_tcp *tcp;
|
struct ipdbg_la_tcp *tcp;
|
||||||
|
|
||||||
tcp = g_malloc0(sizeof(struct ipdbg_la_tcp));
|
tcp = g_malloc0(sizeof(struct ipdbg_la_tcp));
|
||||||
|
|
||||||
tcp->address = NULL;
|
tcp->address = NULL;
|
||||||
tcp->port = NULL;
|
tcp->port = NULL;
|
||||||
tcp->socket = -1;
|
tcp->socket = -1;
|
||||||
|
@ -308,7 +307,7 @@ SR_PRIV int ipdbg_la_receive_data(int fd, int revents, void *cb_data)
|
||||||
devc->raw_sample_buf =
|
devc->raw_sample_buf =
|
||||||
g_try_malloc(devc->limit_samples * devc->DATA_WIDTH_BYTES);
|
g_try_malloc(devc->limit_samples * devc->DATA_WIDTH_BYTES);
|
||||||
if (!devc->raw_sample_buf) {
|
if (!devc->raw_sample_buf) {
|
||||||
sr_warn("Sample buffer malloc failed.");
|
sr_err("Sample buffer malloc failed.");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue