Skip to content

Commit

Permalink
Changed free(app-mutex) to furi_mutex_free(appState->mutex)
Browse files Browse the repository at this point in the history
  • Loading branch information
HappyAmos committed Apr 8, 2024
1 parent fe596f1 commit d64bb30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kcline/kcline.c
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ int32_t kcline_main(void* p) {

// Free app memory
FURI_LOG_I(TAG, "Freeing app");
free(app->mutex);
furi_mutex_free(app->mutex);
free(app);

// We remove the gui from the associated view port
Expand Down

0 comments on commit d64bb30

Please sign in to comment.