From ca3d9cea9106f4cc39a16f8e9598e8f2a131c4cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Wed, 2 Jan 2019 20:02:14 +0100 Subject: [PATCH] Add missing free() call in config_release() --- src/openrct2/config/Config.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openrct2/config/Config.cpp b/src/openrct2/config/Config.cpp index 0ae4d03137..1d32b45dc0 100644 --- a/src/openrct2/config/Config.cpp +++ b/src/openrct2/config/Config.cpp @@ -747,6 +747,7 @@ void config_release() SafeFree(gConfigInterface.current_theme_preset); SafeFree(gConfigInterface.current_title_sequence_preset); SafeFree(gConfigSound.device); + SafeFree(gConfigTwitch.api_url); SafeFree(gConfigTwitch.channel); SafeFree(gConfigNetwork.player_name); SafeFree(gConfigNetwork.listen_address);