Unref page widgets

This commit is contained in:
Moritz Lipp 2012-05-08 17:10:57 +02:00
parent 02582692f9
commit aee30212d1

View File

@ -775,6 +775,9 @@ document_close(zathura_t* zathura, bool keep_monitor)
/* remove widgets */
gtk_container_foreach(GTK_CONTAINER(zathura->ui.page_widget), remove_page_from_table, (gpointer) 1);
for (unsigned int i = 0; i < zathura_document_get_number_of_pages(zathura->document); i++) {
g_object_unref(zathura->pages[i]);
}
free(zathura->pages);
zathura->pages = NULL;