fix MEM Leak
@@ -11,7 +11,7 @@ App(
order=10,
fap_icon="icons/color_guess_10px.png",
fap_icon_assets="icons",
- fap_version="1.2",
+ fap_version="1.3",
fap_category="Games",
fap_author="Leedave",
fap_description="Color Guessing Game",
@@ -1,3 +1,6 @@
+## 1.3
+- Patched Memory Leak in storage
+
## v1.2
- Updated compatibility to 0.95.0-rc
@@ -109,6 +109,8 @@ void color_guess_read_settings(void* context) {
flipper_format_rewind(fff_file);
+ furi_string_free(temp_str);
color_guess_close_config_file(fff_file);
color_guess_close_storage();
}