Fix: grab more than one packet for snapshots
[lttng-tools.git] / src / bin / lttng-sessiond / snapshot.c
index 8faf9a76a28f99f497c1b4542ed0acdfd5d5603f..e5660dac7b02f13bb59c49cabfdd93ba3952ccdf 100644 (file)
@@ -46,10 +46,11 @@ static int output_init(uint64_t max_size, const char *name,
 {
        int ret = 0, i;
 
-       assert(output);
-
        memset(output, 0, sizeof(struct snapshot_output));
 
+       /*
+        * max_size of -1ULL means unset. Set to default (unlimited).
+        */
        if (max_size == (uint64_t) -1ULL) {
                max_size = 0;
        }
This page took 0.023404 seconds and 4 git commands to generate.