src.ctf.fs: make ctf_fs_component::trace a unique_ptr
[babeltrace.git] / src / plugins / ctf / fs-src / query.cpp
index b9efc65bc23e22b641388c5bb702aff37157e0fc..3e25f16870d81ba21a116fd068c27b9504266c44 100644 (file)
@@ -199,7 +199,7 @@ bt2::Value::Shared trace_infos_query(const bt2::ConstMapValue params, const bt2c
 
     const auto result = bt2::ArrayValue::create();
     const auto traceInfo = result->appendEmptyMap();
-    populate_trace_info(ctf_fs->trace, traceInfo, logger);
+    populate_trace_info(ctf_fs->trace.get(), traceInfo, logger);
 
     return result;
 }
This page took 0.026371 seconds and 4 git commands to generate.