Fix: client_sequence_number may dereference NULL pointer
[lttng-ust.git] / liblttng-ust / lttng-ring-buffer-client.h
index 55209f45236db21b3700f8ddac0179430780eec8..b5eb692f7574db223ef2b06e3047277dd56274ce 100644 (file)
@@ -583,6 +583,8 @@ static int client_sequence_number(struct lttng_ust_lib_ring_buffer *buf,
        struct packet_header *header;
 
        header = client_packet_header(buf, handle);
+       if (!header)
+               return -1;
        *seq = header->ctx.packet_seq_num;
        return 0;
 }
This page took 0.022592 seconds and 4 git commands to generate.