Explorar el Código

convert to zalloc

tags/v0.9.3
Holger Lubitz hace 17 años
padre
commit
7297f04481
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1
    2
      src/drivers/bus/mca.c

+ 1
- 2
src/drivers/bus/mca.c Ver fichero

@@ -90,12 +90,11 @@ static int mcabus_probe ( struct root_device *rootdev ) {
90 90
 	for ( slot = 0 ; slot <= MCA_MAX_SLOT_NR ; slot++ ) {
91 91
 		/* Allocate struct mca_device */
92 92
 		if ( ! mca )
93
-			mca = malloc ( sizeof ( *mca ) );
93
+			mca = zalloc ( sizeof ( *mca ) );
94 94
 		if ( ! mca ) {
95 95
 			rc = -ENOMEM;
96 96
 			goto err;
97 97
 		}
98
-		memset ( mca, 0, sizeof ( *mca ) );
99 98
 		mca->slot = slot;
100 99
 
101 100
 		/* Make sure motherboard setup is off */

Loading…
Cancelar
Guardar