From: Christian Grothoff Date: Tue, 26 Jun 2018 15:04:12 +0000 (+0200) Subject: fix another one of bad frees from Julius X-Git-Tag: v0.11.0~332^2~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3bb2a26da20d649189acf255faf685f2f3ac79d6;p=oweals%2Fgnunet.git fix another one of bad frees from Julius --- diff --git a/src/util/disk.c b/src/util/disk.c index 26b615df9..e0227be70 100644 --- a/src/util/disk.c +++ b/src/util/disk.c @@ -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; }