From 9adebb0fc9b96c4ed370dcebc05946a9e418c37f Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Mon, 9 Sep 2024 09:22:28 +0600 Subject: [PATCH] fclose replaced with pclose --- source/libublsettings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libublsettings.c b/source/libublsettings.c index efb3c76..29e8a0a 100644 --- a/source/libublsettings.c +++ b/source/libublsettings.c @@ -1751,7 +1751,7 @@ config_str yon_config_load(char *command, int *str_len){ } } if (output) - fclose(output); + pclose(output); if (i>0){ *str_len = i; return output_strings;