Parcourir la source

convert to zalloc

tags/v0.9.3
Holger Lubitz il y a 17 ans
Parent
révision
f77d9469a4
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1
    2
      src/core/posix_io.c

+ 1
- 2
src/core/posix_io.c Voir le fichier

@@ -215,10 +215,9 @@ int open ( const char *uri_string ) {
215 215
 		return fd;
216 216
 
217 217
 	/* Allocate and initialise structure */
218
-	file = malloc ( sizeof ( *file ) );
218
+	file = zalloc ( sizeof ( *file ) );
219 219
 	if ( ! file )
220 220
 		return -ENOMEM;
221
-	memset ( file, 0, sizeof ( *file ) );
222 221
 	file->refcnt.free = posix_file_free;
223 222
 	file->fd = fd;
224 223
 	file->rc = -EINPROGRESS;

Chargement…
Annuler
Enregistrer