mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-30 23:54:56 +01:00
Free jumplist string from g_key_file_get_string
This commit is contained in:
parent
7b9097ec80
commit
b869d8ad1d
1 changed files with 3 additions and 1 deletions
|
@ -507,7 +507,9 @@ plain_load_jumplist(zathura_database_t* db, const char* file)
|
||||||
return girara_list_new2(g_free);
|
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
|
static bool
|
||||||
|
|
Loading…
Reference in a new issue