Skip to content

Commit

Permalink
[gnc-split-reg.c] don't use g_strdelimit return val
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherlam committed May 13, 2021
1 parent 3bd251a commit 6dcf8f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnucash/gnome/gnc-split-reg.c
Expand Up @@ -428,8 +428,8 @@ gsr_move_sort_and_filter_to_state_file (GNCSplitReg *gsr, GKeyFile* state_file,
if (kvp_filter)
{
gchar *temp_filter_text = g_strdup (kvp_filter);
temp_filter_text = g_strdelimit (temp_filter_text, ",",
';'); // make it conform to .gcm file list
// make it conform to .gcm file list
g_strdelimit (temp_filter_text, ",", ';');
g_key_file_set_string (state_file, state_section, KEY_PAGE_FILTER,
temp_filter_text);
g_free (temp_filter_text);
Expand Down

0 comments on commit 6dcf8f8

Please sign in to comment.