Free jumplist string from g_key_file_get_string

This commit is contained in:
Moritz Lipp 2014-11-07 13:20:47 +01:00
parent 7b9097ec80
commit b869d8ad1d

View file

@ -507,7 +507,9 @@ plain_load_jumplist(zathura_database_t* db, const char* file)
return girara_list_new2(g_free);
}
return get_jumplist_from_str(str_value);
girara_list_t* list = get_jumplist_from_str(str_value);
g_free(str_value);
return list;
}
static bool