util: Fuse g_malloc(); memset() into g_new0()
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Fam Zheng <famz@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
44c2286b5d
commit
9be71be5bd
@ -1004,8 +1004,7 @@ URI *
|
|||||||
uri_new(void) {
|
uri_new(void) {
|
||||||
URI *ret;
|
URI *ret;
|
||||||
|
|
||||||
ret = (URI *) g_malloc(sizeof(URI));
|
ret = g_new0(URI, 1);
|
||||||
memset(ret, 0, sizeof(URI));
|
|
||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user