Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/section_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ int section_list_move_topic(SECTION_LIST *p_section_src, SECTION_LIST *p_section
{
p_section_src->p_article_tail = p_article->p_prior;
}
if (p_section_src->p_article_head == p_article) // || p_section_src->p_article_tail == p_article
if (p_section_src->p_article_head == p_article) // Single element list
{
p_section_src->p_article_head = NULL;
p_section_src->p_article_tail = NULL;
Expand Down