Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix memory leaks with cJSON #1653

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/common/system/lang.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void lang_removeIconLabels(bool remove_icon_labels, bool remove_hints)
}

json_save(root, file_path);
cJSON_free(root);
cJSON_Delete(root);
}
closedir(dp);
}
Expand Down Expand Up @@ -156,7 +156,7 @@ bool lang_load(void)
}
}

cJSON_free(lang_file);
cJSON_Delete(lang_file);

return true;
}
Expand Down
6 changes: 3 additions & 3 deletions src/common/system/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ void _settings_load_keymap(void)
json_getInt(keymap, "ingame_double_press", &settings.ingame_double_press);
json_getString(keymap, "mainui_button_x", settings.mainui_button_x);
json_getString(keymap, "mainui_button_y", settings.mainui_button_y);
cJSON_free(keymap);
cJSON_Delete(keymap);
}

void _settings_load_mainui(void)
Expand Down Expand Up @@ -187,7 +187,7 @@ void _settings_load_mainui(void)
strcpy(settings.theme, DEFAULT_THEME_PATH);
}

cJSON_free(json_root);
cJSON_Delete(json_root);
}

void settings_load(void)
Expand Down Expand Up @@ -383,7 +383,7 @@ bool settings_saveSystemProperty(const char *prop_name, int value)

cJSON_SetNumberValue(prop, value);
json_save(json_root, MAIN_UI_SETTINGS);
cJSON_free(json_root);
cJSON_Delete(json_root);
temp_flag_set("settings_changed", true);

return true;
Expand Down
4 changes: 2 additions & 2 deletions src/common/theme/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ bool theme_applyConfig(Theme_s *config, const char *config_path,
json_getInt(json_frame, "border-left", &config->frame.border_left);
json_getInt(json_frame, "border-right", &config->frame.border_right);

cJSON_free(json_root);
cJSON_Delete(json_root);

return true;
}
Expand Down Expand Up @@ -243,7 +243,7 @@ static bool _theme_overrides_changed = false;
void theme_freeOverrides(void)
{
if (_theme_overrides != NULL)
cJSON_free(_theme_overrides);
cJSON_Delete(_theme_overrides);
_theme_overrides = NULL;
}

Expand Down
4 changes: 2 additions & 2 deletions src/common/utils/apply_icons.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ bool apply_singleIconByFullPath(const char *config_path, const char *icon_path)
json_forceSetString(config, "iconsel", sel_path);

_saveConfigFile(config_path, cJSON_Print(config));
cJSON_free(config);
cJSON_Delete(config);

return true;
}
Expand Down Expand Up @@ -172,7 +172,7 @@ bool _apply_singleIconFromPack(const char *config_path,
json_forceSetString(config, "icon", icon_path);

_saveConfigFile(config_path, cJSON_Print(config));
cJSON_free(config);
cJSON_Delete(config);

printf_debug("Applied icon to %s\nicon: %s\niconsel: %s\n", config_path,
icon_path, sel_path);
Expand Down
2 changes: 1 addition & 1 deletion src/common/utils/json.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ bool json_forceSetString(cJSON *object, const char *key, const char *value)
* @brief Loads and parses a json file.
*
* @param file_path
* @return cJSON* Root json object. Remember to cJSON_free the result.
* @return cJSON* Root json object. Remember to cJSON_Delete the result.
*/
cJSON *json_load(const char *file_path)
{
Expand Down
2 changes: 1 addition & 1 deletion src/gameSwitcher/gameSwitcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ int main(int argc, char *argv[])
#endif

if (json_root != NULL)
cJSON_free(json_root);
cJSON_Delete(json_root);

SDL_BlitSurface(screen, NULL, video, NULL);
SDL_Flip(video);
Expand Down
2 changes: 1 addition & 1 deletion src/infoPanel/infoPanel.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static bool loadImagesPathsFromJson(const char *config_path,
strncpy((*images_titles)[i], image_title, g_title_max_length);
}

cJSON_free(json_root);
cJSON_Delete(json_root);

return true;
}
Expand Down
8 changes: 4 additions & 4 deletions src/randomGamePicker/randomGamePicker.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ bool loadEmuConfig(char *emupath, char *emuname_out, char *romsdir_out,
if (romsdir_out != NULL) {
char romsdir_rel[STR_MAX];
if (!json_getString(json_root, "rompath", romsdir_rel)) {
cJSON_free(json_root);
cJSON_Delete(json_root);
return false;
}

// Ignore Search results
if (strncmp(romsdir_rel, "../../App/", 10) == 0) {
cJSON_free(json_root);
cJSON_Delete(json_root);
return false;
}

Expand Down Expand Up @@ -95,7 +95,7 @@ bool loadEmuConfig(char *emupath, char *emuname_out, char *romsdir_out,
imgpath_rel);
}

cJSON_free(json_root);
cJSON_Delete(json_root);
return true;
}

Expand Down Expand Up @@ -285,7 +285,7 @@ bool addRandomFromJson(char *json_path)
count++;
}

cJSON_free(json_root);
cJSON_Delete(json_root);
}

total_games_count = system_count = count;
Expand Down
4 changes: 2 additions & 2 deletions src/tweaks/icons.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,14 +247,14 @@ bool _add_config_icon(const char *path, const char *name,
cJSON *config = json_load(config_path);

if (!json_getString(config, "icon", icon_path)) {
cJSON_free(config);
cJSON_Delete(config);
return false;
}

if (!json_getString(config, "label", label))
strncpy(label, name, STR_MAX - 1);

cJSON_free(config);
cJSON_Delete(config);

ListItem item = {.action = action};

Expand Down
Loading