Fix: Only allow setting a stream class when not frozen
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 18 Dec 2014 18:01:03 +0000 (13:01 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 6 Jan 2015 21:59:37 +0000 (16:59 -0500)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
formats/ctf/ir/stream-class.c

index 6f1ec13e0501213222b1d55efb68527e3a5ccc11..058f4b29ecd1765f6a7d0521d58c02eb559a73c5 100644 (file)
@@ -151,7 +151,7 @@ int bt_ctf_stream_class_set_id(struct bt_ctf_stream_class *stream_class,
 {
        int ret = 0;
 
-       if (!stream_class) {
+       if (!stream_class || stream_class->frozen) {
                ret = -1;
                goto end;
        }
This page took 0.043336 seconds and 4 git commands to generate.