diff options
author | Martin Mares <mj@ucw.cz> | 1999-03-04 12:40:05 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-03-04 12:40:05 +0100 |
commit | f81dc8564ae6c17638d7e3970b9980d0d00fc78a (patch) | |
tree | 4c1f65331dd35e6b8b5e5790aa8e44bb93d7fffa /sysdep | |
parent | 8fe48f1377c8b501e9b090748b195c62f5b582d2 (diff) | |
download | bird-f81dc8564ae6c17638d7e3970b9980d0d00fc78a.tar bird-f81dc8564ae6c17638d7e3970b9980d0d00fc78a.zip |
Converted some mb_alloc/bzero pairs to mb_allocz.
Diffstat (limited to 'sysdep')
-rw-r--r-- | sysdep/linux/krt-scan.c | 3 | ||||
-rw-r--r-- | sysdep/linux/netlink/netlink.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sysdep/linux/krt-scan.c b/sysdep/linux/krt-scan.c index 3e5a240..4660682 100644 --- a/sysdep/linux/krt-scan.c +++ b/sysdep/linux/krt-scan.c @@ -33,8 +33,7 @@ krt_temp_iface(struct krt_proto *p, char *name) WALK_LIST(i, p->scan.temp_ifs) if (!strcmp(i->name, name)) return i; - i = mb_alloc(p->p.pool, sizeof(struct iface)); - bzero(i, sizeof(*i)); + i = mb_allocz(p->p.pool, sizeof(struct iface)); strcpy(i->name, name); add_tail(&p->scan.temp_ifs, &i->n); return i; diff --git a/sysdep/linux/netlink/netlink.c b/sysdep/linux/netlink/netlink.c index c196efb..539686e 100644 --- a/sysdep/linux/netlink/netlink.c +++ b/sysdep/linux/netlink/netlink.c @@ -419,8 +419,7 @@ krt_temp_iface(struct krt_proto *p, unsigned index) WALK_LIST(i, p->scan.temp_ifs) if (i->index == index) return i; - i = mb_alloc(p->p.pool, sizeof(struct iface)); - bzero(i, sizeof(*i)); + i = mb_allocz(p->p.pool, sizeof(struct iface)); if (j = if_find_by_index(index)) strcpy(i->name, j->name); else |