mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 12:26:01 +01:00
Fix two memory leaks
This commit is contained in:
parent
83f55ff24a
commit
02582692f9
2 changed files with 3 additions and 0 deletions
|
@ -420,6 +420,7 @@ plain_get_fileinfo(zathura_database_t* db, const char* file, zathura_fileinfo_t*
|
||||||
|
|
||||||
char* name = prepare_filename(file);
|
char* name = prepare_filename(file);
|
||||||
if (g_key_file_has_group(priv->history, name) == FALSE) {
|
if (g_key_file_has_group(priv->history, name) == FALSE) {
|
||||||
|
g_free(name);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -944,6 +944,8 @@ position_set_delayed_impl(gpointer data)
|
||||||
set_adjustment(hadjustment, p->position_x);
|
set_adjustment(hadjustment, p->position_x);
|
||||||
set_adjustment(vadjustment, p->position_y);
|
set_adjustment(vadjustment, p->position_y);
|
||||||
|
|
||||||
|
g_free(p);
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue