Explorar el Código

Zeroing out memory before using it can be so important.

tags/v0.9.3
Michael Brown hace 17 años
padre
commit
13d9a660ca
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1
    0
      src/core/resolv.c

+ 1
- 0
src/core/resolv.c Ver fichero

@@ -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…
Cancelar
Guardar