cmark

My personal build of CMark ✏️

Commit
43ceb9ed52eed01de2933bc0ef48d120a15be75a
Parent
d8abed93b8639b4c1adf758bf10e4c45f337df8c
Author
John MacFarlane <jgm@berkeley.edu>
Date

Add NOLINTNEXTLINE to avoid a useless linter error.

Diffstat

1 file changed, 1 insertion, 0 deletions

Status File Name N° Changes Insertions Deletions
Modified src/inlines.c 1 1 0
diff --git a/src/inlines.c b/src/inlines.c
@@ -99,6 +99,7 @@ static CMARK_INLINE cmark_node *make_simple(cmark_mem *mem, cmark_node_type t) {
 
 static cmark_node *make_str(subject *subj, int sc, int ec, cmark_chunk s) {
   cmark_node *e = make_literal(subj, CMARK_NODE_TEXT, sc, ec);
+  // NOLINTNEXTLINE(clang-analyzer-core.NonNullParamChecker)
   e->data = (unsigned char *)subj->mem->realloc(NULL, s.len + 1);
   memcpy(e->data, s.data, s.len);
   e->data[s.len] = 0;