md_process_table_row: Fix possible errorneous free() on an error path.
diff --git a/md4c/md4c.c b/md4c/md4c.c
index e82f5ac..f8b5311 100644
--- a/md4c/md4c.c
+++ b/md4c/md4c.c
@@ -3690,7 +3690,7 @@ md_process_table_row(MD_CTX* ctx, MD_BLOCKTYPE cell_type, OFF beg, OFF end,
const MD_ALIGN* align, int n_align)
{
MD_LINE line = { beg, end };
- OFF* pipe_offs;
+ OFF* pipe_offs = NULL;
int i, j, n;
int ret = 0;