Skip to content

Commit b1e6af5

Browse files
committed
Avoid gcc warning for uninitialized variable.
1 parent a308cf9 commit b1e6af5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inlines.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ static void process_emphasis(subject *subj, delimiter *stack_bottom) {
605605
delimiter *opener;
606606
delimiter *old_closer;
607607
bool opener_found;
608-
int openers_bottom_index;
608+
int openers_bottom_index = 0;
609609
delimiter *openers_bottom[6] = {stack_bottom, stack_bottom, stack_bottom,
610610
stack_bottom, stack_bottom, stack_bottom};
611611

0 commit comments

Comments
 (0)