Clean-up: lttng: check status returned when checking rotation state
[lttng-tools.git] / src / bin / lttng / commands / destroy.c
index a258f64097f275c0c116c4cae1232f5dba181544..cac1e96fd8d1f9655f67adf084833880673027a8 100644 (file)
@@ -161,6 +161,10 @@ static int destroy_session(struct lttng_session *session)
 
        status = lttng_destruction_handle_get_rotation_state(handle,
                        &rotation_state);
+       if (status != LTTNG_DESTRUCTION_HANDLE_STATUS_OK) {
+               ERR("Failed to get rotation state from destruction handle");
+               goto skip_wait_rotation;
+       }
        switch (rotation_state) {
        case LTTNG_ROTATION_STATE_NO_ROTATION:
                break;
This page took 0.022494 seconds and 4 git commands to generate.