Преглед изворни кода

convert to zalloc

tags/v0.9.3
Holger Lubitz пре 17 година
родитељ
комит
389c63d7c4
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1
    2
      src/net/udp.c

+ 1
- 2
src/net/udp.c Прегледај датотеку

@@ -104,11 +104,10 @@ static int udp_open_common ( struct xfer_interface *xfer,
104 104
 	int rc;
105 105
 
106 106
 	/* Allocate and initialise structure */
107
-	udp = malloc ( sizeof ( *udp ) );
107
+	udp = zalloc ( sizeof ( *udp ) );
108 108
 	if ( ! udp )
109 109
 		return -ENOMEM;
110 110
 	DBGC ( udp, "UDP %p allocated\n", udp );
111
-	memset ( udp, 0, sizeof ( *udp ) );
112 111
 	xfer_init ( &udp->xfer, &udp_xfer_operations, &udp->refcnt );
113 112
 	memcpy ( &udp->peer, st_peer, sizeof ( udp->peer ) );
114 113
 

Loading…
Откажи
Сачувај