md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
git clone https://noulin.net/git/md4c.git
Log | Files | Refs | README | LICENSE

commit 17e6b940ce7a23a18a072c53c0d0e47f14d4b035
parent 035dea495b814709eea8cfbea7cc4589d0a3c0f8
Author: Martin Mitas <mity@morous.org>
Date:   Sun,  4 Dec 2016 20:53:47 +0100

md_resolve_links: Minor cleanup.

Diffstat:
Mmd4c/md4c.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/md4c/md4c.c b/md4c/md4c.c @@ -2735,7 +2735,7 @@ md_resolve_links(MD_CTX* ctx, const MD_LINE* lines, int n_lines) int closer_index = opener->next; MD_MARK* closer = &ctx->marks[closer_index]; int next_index = opener->prev; - MD_MARK* next_opener = &ctx->marks[next_index]; + MD_MARK* next_opener; MD_MARK* next_closer; MD_LINK_ATTR attr; int is_link = FALSE; @@ -2745,6 +2745,7 @@ md_resolve_links(MD_CTX* ctx, const MD_LINE* lines, int n_lines) next_closer = &ctx->marks[next_opener->next]; } else { next_opener = NULL; + next_closer = NULL; } /* If nested ("[ [ ] ]"), we need to make sure that: