FIXED: Fix bug in determining label for headers

This commit is contained in:
Fletcher T. Penney 2017-03-18 09:55:09 -04:00
parent 9c280720bd
commit ab903787a2

View File

@ -1332,6 +1332,9 @@ void process_definition_stack(mmd_engine * e) {
}
token * manual_label_from_header(token * h, const char * source) {
if (!h || !h->child)
return NULL;
token * walker = h->child->tail;
token * label = NULL;
short count = 0;