From: Holger Lubitz Date: Sun, 17 Jun 2007 23:25:07 +0000 (+0200) Subject: convert to zalloc X-Git-Tag: v0.9.3~266 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68add6e814091f55e46afbef0b63f3d61f9549ba;p=thirdparty%2Fipxe.git convert to zalloc --- diff --git a/src/drivers/net/3c509.c b/src/drivers/net/3c509.c index 12cf77402..eae90b350 100644 --- a/src/drivers/net/3c509.c +++ b/src/drivers/net/3c509.c @@ -347,12 +347,11 @@ static int t509bus_probe ( struct root_device *rootdev ) { for ( tag = 1 ; tag <= t509_max_tag ; tag++ ) { /* Allocate struct t509_device */ if ( ! t509 ) - t509 = malloc ( sizeof ( *t509 ) ); + t509 = zalloc ( sizeof ( *t509 ) ); if ( ! t509 ) { rc = -ENOMEM; goto err; } - memset ( t509, 0, sizeof ( *t509 ) ); t509->tag = tag; /* Send the ID sequence */