Skip to content

Commit

Permalink
Merge pull request #1 from leedave/feature/fix_mem_leak
Browse files Browse the repository at this point in the history
fix MEM Leak
  • Loading branch information
leedave authored Jan 7, 2024
2 parents 54116f0 + da8663f commit 37dd3bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.3
- Patched Memory Leak in storage

## v1.2
- Updated compatibility to 0.95.0-rc

Expand Down
2 changes: 2 additions & 0 deletions helpers/color_guess_storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

0 comments on commit 37dd3bd

Please sign in to comment.