Sfoglia il codice sorgente

Zeroing out memory before using it can be so important.

tags/v0.9.3
Michael Brown 17 anni fa
parent
commit
13d9a660ca
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1
    0
      src/core/resolv.c

+ 1
- 0
src/core/resolv.c Vedi File

@@ -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 */

Loading…
Annulla
Salva