소스 검색

convert to zalloc

tags/v0.9.3
Holger Lubitz 17 년 전
부모
커밋
dc6c1c294d
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    2
      src/net/tcp.c

+ 1
- 2
src/net/tcp.c 파일 보기

@@ -205,11 +205,10 @@ static int tcp_open ( struct xfer_interface *xfer, struct sockaddr *peer,
205 205
 	int rc;
206 206
 
207 207
 	/* Allocate and initialise structure */
208
-	tcp = malloc ( sizeof ( *tcp ) );
208
+	tcp = zalloc ( sizeof ( *tcp ) );
209 209
 	if ( ! tcp )
210 210
 		return -ENOMEM;
211 211
 	DBGC ( tcp, "TCP %p allocated\n", tcp );
212
-	memset ( tcp, 0, sizeof ( *tcp ) );
213 212
 	xfer_init ( &tcp->xfer, &tcp_xfer_operations, &tcp->refcnt );
214 213
 	tcp->prev_tcp_state = TCP_CLOSED;
215 214
 	tcp->tcp_state = TCP_STATE_SENT ( TCP_SYN );

Loading…
취소
저장