sessiond: clean-up: init ret value of _session_set_trace_chunk_no_lock_check
[lttng-tools.git] / src / bin / lttng-sessiond / session.c
index e0ab7f4a5eaf70933f25fa082fcead54787d5d17..9072a2ecbead28a7b1c1e990d9d827f009e8af89 100644 (file)
@@ -423,7 +423,7 @@ int _session_set_trace_chunk_no_lock_check(struct ltt_session *session,
                struct lttng_trace_chunk *new_trace_chunk,
                struct lttng_trace_chunk **_current_trace_chunk)
 {
-       int ret;
+       int ret = 0;
        unsigned int i, refs_to_acquire = 0, refs_acquired = 0, refs_to_release = 0;
        struct cds_lfht_iter iter;
        struct consumer_socket *socket;
@@ -482,7 +482,6 @@ int _session_set_trace_chunk_no_lock_check(struct ltt_session *session,
                        ret_error_code = ust_app_create_channel_subdirectories(
                                        session->ust_session);
                        if (ret_error_code != LTTNG_OK) {
-                               ret = -ret_error_code;
                                goto error;
                        }
                 }
@@ -513,7 +512,6 @@ int _session_set_trace_chunk_no_lock_check(struct ltt_session *session,
                        ret_error_code = kernel_create_channel_subdirectories(
                                        session->kernel_session);
                        if (ret_error_code != LTTNG_OK) {
-                               ret = -ret_error_code;
                                goto error;
                        }
                 }
This page took 0.02419 seconds and 5 git commands to generate.