ソースを参照

convert to zalloc

tags/v0.9.3
Holger Lubitz 17年前
コミット
7872b890fe
1個のファイルの変更1行の追加2行の削除
  1. 1
    2
      src/net/tcp/http.c

+ 1
- 2
src/net/tcp/http.c ファイルの表示

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

読み込み中…
キャンセル
保存