Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for regression in XML output generation after fixing bug 789168
  • Loading branch information
Dimitri van Heesch committed Nov 19, 2017
1 parent d8001ef commit 1a1fdbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xmlgen.cpp
Expand Up @@ -842,7 +842,7 @@ static void generateXMLForMember(MemberDef *md,FTextStream &ti,FTextStream &t,De
{
ArgumentList *declAl = md->declArgumentList();
ArgumentList *defAl = md->argumentList();
if (declAl && declAl->count()>0)
if (declAl && defAl && declAl->count()>0)
{
ArgumentListIterator declAli(*declAl);
ArgumentListIterator defAli(*defAl);
Expand Down

0 comments on commit 1a1fdbe

Please sign in to comment.