From 0b062a01f2504cca9f886ae91e59283158a9bbc3 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 11 Jun 2010 10:58:24 +0000 Subject: [PATCH] fix double free --- src/fs/fs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fs/fs.c b/src/fs/fs.c index 34850f14c..4107e137a 100644 --- a/src/fs/fs.c +++ b/src/fs/fs.c @@ -1810,6 +1810,7 @@ GNUNET_FS_download_sync_ (struct GNUNET_FS_DownloadContext *dc) goto cleanup; } GNUNET_free_non_null (uris); + uris = NULL; if (GNUNET_OK != GNUNET_BIO_write_close (wh)) { -- 2.25.1