Explorar o código

Copy also NUL Character when depth is set to zero

Corentin Salingue %!s(int64=8) %!d(string=hai) anos
pai
achega
398cefc1ae
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/common/utils.c

+ 1 - 1
src/common/utils.c

@@ -263,7 +263,7 @@ char *_starpu_mktemp_many(const char *directory, int depth, int flags, int *fd)
 		return NULL;
 	}
 
-	memcpy(path, directory, len);
+	memcpy(path, directory, len+1);
 	for (i = 0; i < depth; i++)
 	{
 		int r = starpu_lrand48();