From c223ace5eb6e03e8eaef4c8fcc16036ef4f51a2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Thu, 21 Oct 2021 00:41:35 +0800 Subject: [PATCH] Fix double free memory error --- src/fastfetch.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/fastfetch.c b/src/fastfetch.c index 3f7113994..6972645c7 100644 --- a/src/fastfetch.c +++ b/src/fastfetch.c @@ -634,7 +634,6 @@ static void parseConfigFile(FFinstance* instance, FFdata* data, FILE* file) if(firstSpace >= line.length) { parseOption(instance, data, line.chars, NULL); - ffStrbufDestroy(&line); continue; }