From 06342ca60ed822b856990915f127d8beddc0d1f6 Mon Sep 17 00:00:00 2001 From: winndows Date: Wed, 1 Jul 2020 13:20:01 +0800 Subject: [PATCH] libfuse: Assign NULL to "old" to avoid free it twice (#522) Assign NULL to "old" at the first free(), to avoid the possible 2nd free() for it. Signed-off-by: Liao Pingfang Co-authored-by: Liao Pingfang --- lib/modules/iconv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/modules/iconv.c b/lib/modules/iconv.c index eb5edd8..3a4db7c 100644 --- a/lib/modules/iconv.c +++ b/lib/modules/iconv.c @@ -705,6 +705,7 @@ static struct fuse_fs *iconv_new(struct fuse_args *args, if (old) { setlocale(LC_CTYPE, old); free(old); + old = NULL; } ic->next = next[0]; -- 2.30.2