after allocating the treedatalist, zero it to make sure the values are

2001-10-31  Matt Wilson  <msw@redhat.com>

	* gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
	allocating the treedatalist, zero it to make sure the values are
	cleared from any garbage that was in this chunk.
This commit is contained in:
Matt Wilson 2001-10-31 18:54:20 +00:00 committed by Matt Wilson
parent 3cc89fb5ab
commit 67a1d07327
8 changed files with 43 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2001-10-31 Matt Wilson <msw@redhat.com>
* gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
allocating the treedatalist, zero it to make sure the values are
cleared from any garbage that was in this chunk.
2001-10-31 Murray Cumming <murrayc@usa.net>
* gtk/cellrenderertext.h: "edited" default signal handler

View File

@ -1,3 +1,9 @@
2001-10-31 Matt Wilson <msw@redhat.com>
* gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
allocating the treedatalist, zero it to make sure the values are
cleared from any garbage that was in this chunk.
2001-10-31 Murray Cumming <murrayc@usa.net>
* gtk/cellrenderertext.h: "edited" default signal handler

View File

@ -1,3 +1,9 @@
2001-10-31 Matt Wilson <msw@redhat.com>
* gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
allocating the treedatalist, zero it to make sure the values are
cleared from any garbage that was in this chunk.
2001-10-31 Murray Cumming <murrayc@usa.net>
* gtk/cellrenderertext.h: "edited" default signal handler

View File

@ -1,3 +1,9 @@
2001-10-31 Matt Wilson <msw@redhat.com>
* gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
allocating the treedatalist, zero it to make sure the values are
cleared from any garbage that was in this chunk.
2001-10-31 Murray Cumming <murrayc@usa.net>
* gtk/cellrenderertext.h: "edited" default signal handler

View File

@ -1,3 +1,9 @@
2001-10-31 Matt Wilson <msw@redhat.com>
* gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
allocating the treedatalist, zero it to make sure the values are
cleared from any garbage that was in this chunk.
2001-10-31 Murray Cumming <murrayc@usa.net>
* gtk/cellrenderertext.h: "edited" default signal handler

View File

@ -1,3 +1,9 @@
2001-10-31 Matt Wilson <msw@redhat.com>
* gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
allocating the treedatalist, zero it to make sure the values are
cleared from any garbage that was in this chunk.
2001-10-31 Murray Cumming <murrayc@usa.net>
* gtk/cellrenderertext.h: "edited" default signal handler

View File

@ -1,3 +1,9 @@
2001-10-31 Matt Wilson <msw@redhat.com>
* gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
allocating the treedatalist, zero it to make sure the values are
cleared from any garbage that was in this chunk.
2001-10-31 Murray Cumming <murrayc@usa.net>
* gtk/cellrenderertext.h: "edited" default signal handler

View File

@ -39,6 +39,7 @@ _gtk_tree_data_list_alloc (void)
G_ALLOC_AND_FREE);
list = g_chunk_new (GtkTreeDataList, tree_chunk);
memset (list, 0, sizeof (GtkTreeDataList));
return list;
}