X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Flib%2Ftrace-ir%2Ftrace.c;h=72493a48589441a641955a7d2da9d0011f86ba1e;hp=9891d12b224dc53131fc94f0f863b11e0802dd11;hb=6871026b82224d83bb63cbb44cc33c16c766d96d;hpb=cdbde3b580b85b33963c3310b9e1132b80b41a24 diff --git a/src/lib/trace-ir/trace.c b/src/lib/trace-ir/trace.c index 9891d12b..72493a48 100644 --- a/src/lib/trace-ir/trace.c +++ b/src/lib/trace-ir/trace.c @@ -196,7 +196,7 @@ struct bt_trace *bt_trace_create(struct bt_trace_class *tc) } trace->class = tc; - bt_object_get_no_null_check(trace->class); + bt_object_get_ref_no_null_check(trace->class); BT_LIB_LOGD("Created trace object: %!+t", trace); goto end; @@ -568,9 +568,9 @@ void bt_trace_set_user_attributes( BT_ASSERT_PRE(user_attributes->type == BT_VALUE_TYPE_MAP, "User attributes object is not a map value object."); BT_ASSERT_PRE_DEV_TRACE_HOT(trace); - bt_object_put_no_null_check(trace->user_attributes); + bt_object_put_ref_no_null_check(trace->user_attributes); trace->user_attributes = (void *) user_attributes; - bt_object_get_no_null_check(trace->user_attributes); + bt_object_get_ref_no_null_check(trace->user_attributes); } void bt_trace_get_ref(const struct bt_trace *trace)