X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fattribute.c;h=d06958972474cbd89909dca23ebe738a0de258e1;hb=ba576a781d5a1020ff7202ac9a959c9f4a0c7a4c;hp=a0452b5fdc0e324c523ad49e81660c291403df99;hpb=336900061b500618df3b160ac88209a6450352dc;p=lttv.git diff --git a/ltt/branches/poly/lttv/attribute.c b/ltt/branches/poly/lttv/attribute.c index a0452b5f..d0695897 100644 --- a/ltt/branches/poly/lttv/attribute.c +++ b/ltt/branches/poly/lttv/attribute.c @@ -103,7 +103,7 @@ lttv_attribute_get_by_name(LttvAttribute *self, LttvAttributeName name, p = g_hash_table_lookup(self->names, GUINT_TO_POINTER(name)); if(p == NULL) return LTTV_NONE; - i = POINTER_TO_GUINT(p); + i = GPOINTER_TO_UINT(p); i--; a = &g_array_index(self->attributes, Attribute, i); *v = address_of_value(a->type, &(a->value)); @@ -258,7 +258,7 @@ attribute_instance_init (GTypeInstance *instance, gpointer g_class) static void attribute_finalize (LttvAttribute *self) { - g_hash_table_free(self->names); + g_hash_table_destroy(self->names); g_array_free(self->attributes, TRUE); G_OBJECT_CLASS(g_type_class_peek_parent(LTTV_ATTRIBUTE_GET_CLASS(self)))->finalize(G_OBJECT(self)); }