Bläddra i källkod

convert to zalloc

tags/v0.9.3
Holger Lubitz 18 år sedan
förälder
incheckning
7872b890fe
1 ändrade filer med 1 tillägg och 2 borttagningar
  1. 1
    2
      src/net/tcp/http.c

+ 1
- 2
src/net/tcp/http.c Visa fil

475
 		return -EINVAL;
475
 		return -EINVAL;
476
 
476
 
477
 	/* Allocate and populate HTTP structure */
477
 	/* Allocate and populate HTTP structure */
478
-	http = malloc ( sizeof ( *http ) );
478
+	http = zalloc ( sizeof ( *http ) );
479
 	if ( ! http )
479
 	if ( ! http )
480
 		return -ENOMEM;
480
 		return -ENOMEM;
481
-	memset ( http, 0, sizeof ( *http ) );
482
 	http->refcnt.free = http_free;
481
 	http->refcnt.free = http_free;
483
 	xfer_init ( &http->xfer, &http_xfer_operations, &http->refcnt );
482
 	xfer_init ( &http->xfer, &http_xfer_operations, &http->refcnt );
484
        	http->uri = uri_get ( uri );
483
        	http->uri = uri_get ( uri );

Laddar…
Avbryt
Spara