Cleanup: remove unused internal lttng_session_descriptor_get_base_path
[lttng-tools.git] / src / common / session-descriptor.c
index 713731c3e222590d9a92085cd349d9fadc0264d4..224138dd22a2462d3b2c1a89d9839abe84f786d7 100644 (file)
@@ -522,6 +522,10 @@ _lttng_session_descriptor_live_network_create(
 
        descriptor = _lttng_session_descriptor_live_create(name,
                        live_timer_interval_us);
+       if (!descriptor) {
+               goto error;
+       }
+
        descriptor->base.output_type =
                        LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK;
 
@@ -1172,26 +1176,3 @@ int lttng_session_descriptor_assign(
 end:
        return ret;
 }
-
-LTTNG_HIDDEN
-int lttng_session_descriptor_get_base_path(struct lttng_session_descriptor *dst,
-               const char **_base_path)
-{
-       switch (dst->output_type) {
-       case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK:
-       {
-               if (dst->output.network.control &&
-                               dst->output.network.control->subdir[0]) {
-                       *_base_path = dst->output.network.control->subdir;
-               } else {
-                       *_base_path = NULL;
-               }
-               break;
-       }
-       case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL:
-       case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE:
-               *_base_path = NULL;
-               break;
-       }
-       return 0;
-}
This page took 0.023294 seconds and 4 git commands to generate.