X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Ffloat.c;h=56ca402c2b4a9a9f4f84f80c26a4a0fa18b8848a;hp=266f7579da0c37de05eb43b9218ca31c839f7a35;hb=d06d03dbf4babd3426818f23770e15058a6876c4;hpb=11796b9629d5a870163e4edd67e457576553aaef diff --git a/types/float.c b/types/float.c index 266f7579..56ca402c 100644 --- a/types/float.c +++ b/types/float.c @@ -40,6 +40,9 @@ void float_copy(struct stream_pos *dest, const struct format *fdest, void float_type_free(struct type_class_float *float_class) { + integer_type_free(float_class->exp); + integer_type_free(float_class->mantissa); + integer_type_free(float_class->sign); g_free(float_class); }