X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Ffloat.c;h=863173852c9baacc6bfbf7dbe5208cad55d89088;hp=cc6c957aeebe09ebc6124cc4cdf8db985f558893;hb=7e18eedf5333dbd6f1e0a8d873a7275dee1ed396;hpb=64fa3fec6c28f1d077812b4bfa06ae73b0f5999d diff --git a/types/float.c b/types/float.c index cc6c957a..86317385 100644 --- a/types/float.c +++ b/types/float.c @@ -61,13 +61,13 @@ struct declaration_float * float_declaration->sign = integer_declaration_new(1, byte_order, false, 1, 2, - CTF_STRING_NONE); + CTF_STRING_NONE, NULL); float_declaration->mantissa = integer_declaration_new(mantissa_len - 1, byte_order, false, 1, 10, - CTF_STRING_NONE); + CTF_STRING_NONE, NULL); float_declaration->exp = integer_declaration_new(exp_len, byte_order, true, 1, 10, - CTF_STRING_NONE); + CTF_STRING_NONE, NULL); return float_declaration; } @@ -119,9 +119,11 @@ struct definition * _float->p.index = root_name ? INT_MAX : index; _float->p.name = field_name; _float->value = 0.0; - ret = register_field_definition(field_name, &_float->p, - parent_scope); - assert(!ret); + if (parent_scope) { + ret = register_field_definition(field_name, &_float->p, + parent_scope); + assert(!ret); + } return &_float->p; }