ソースを参照

Zeroing out memory before using it can be so important.

tags/v0.9.3
Michael Brown 17年前
コミット
13d9a660ca
1個のファイルの変更1行の追加0行の削除
  1. 1
    0
      src/core/resolv.c

+ 1
- 0
src/core/resolv.c ファイルの表示

@@ -56,6 +56,7 @@ int resolv ( const char *name, struct sockaddr *sa, struct async *parent ) {
56 56
 	resolution = malloc ( sizeof ( *resolution ) );
57 57
 	if ( ! resolution )
58 58
 		return -ENOMEM;
59
+	memset ( resolution, 0, sizeof ( *resolution ) );
59 60
 	async_init ( &resolution->async, &resolv_async_operations, parent );
60 61
 
61 62
 	/* Check for a dotted quad IP address first */

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