* eet: Oops. Fix init order.

SVN revision: 41736
This commit is contained in:
Cedric BAIL 2009-08-13 13:57:22 +00:00
parent 2cf15dc335
commit 05edf17dd4
1 changed files with 2 additions and 2 deletions

View File

@ -1129,12 +1129,12 @@ eet_data_descriptor_new(const char *name,
if (!name) return NULL;
memset(&eddc, 0, sizeof (Eet_Data_Descriptor_Class));
eddc.name = name;
eddc.size = size;
eddc.version = 0;
memset(&eddc, 0, sizeof (Eet_Data_Descriptor_Class));
eddc.func.list_next = func_list_next;
eddc.func.list_append = func_list_append;
eddc.func.list_data = func_list_data;