Fix: pass private data to context callbacks
[lttng-ust.git] / libmsgpack / msgpack.c
index 564639cd576c49e630ced610b576e231f5160a1c..10b06adc5b006335798a9ce28e2bd83679235054 100644 (file)
@@ -1,24 +1,9 @@
 /*
- * msgpack.c
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
  * Copyright (C) 2020 Francis Deslauriers <francis.deslauriers@efficios.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; only
- * version 2.1 of the License.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#define _GNU_SOURCE
 #define _LGPL_SOURCE
 #include <stddef.h>
 
@@ -502,7 +487,6 @@ void lttng_msgpack_writer_init(struct lttng_msgpack_writer *writer,
                uint8_t *buffer, size_t size)
 {
        lttng_msgpack_assert(buffer);
-       lttng_msgpack_assert(size >= 0);
 
        writer->buffer = buffer;
        writer->write_pos = buffer;
This page took 0.025979 seconds and 4 git commands to generate.