fix another one of bad frees from Julius
authorChristian Grothoff <christian@grothoff.org>
Tue, 26 Jun 2018 15:04:12 +0000 (17:04 +0200)
committerChristian Grothoff <christian@grothoff.org>
Tue, 26 Jun 2018 15:04:12 +0000 (17:04 +0200)
src/util/disk.c

index 26b615df9db2612d70a7b85b5f7ad84e3fa9bb3d..e0227be706b04d4f985aa048eb38df6f6d3c10e8 100644 (file)
@@ -605,7 +605,6 @@ GNUNET_DISK_mktemp (const char *t)
   umask (omask);
   if (0 != CLOSE (fd))
     LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "close", fn);
-  GNUNET_free (fn);
   return fn;
 }