We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d7b58cf + 1d74ed8 commit dcf56a1Copy full SHA for dcf56a1
console/tidy.c
@@ -1740,6 +1740,10 @@ static void printXMLCrossRefEqConsole(TidyDoc tdoc, /**< The Tidy document. */
1740
free((tmbstr)localHit.name3);
1741
free(localName);
1742
}
1743
+ if ( localHit.eqconfig ) /* Is. #791 */
1744
+ {
1745
+ free((tmbstr)localHit.eqconfig);
1746
+ }
1747
1748
1749
else
@@ -1886,6 +1890,7 @@ static void xml_help( void )
1886
1890
if (localPos.name1) free((tmbstr)localPos.name1);
1887
1891
if (localPos.name2) free((tmbstr)localPos.name2);
1888
1892
if (localPos.name3) free((tmbstr)localPos.name3);
1893
+ if (localPos.eqconfig) free((tmbstr)localPos.eqconfig); /* Is. #791 */
1889
1894
1895
1896
printf( "</cmdline>\n" );
0 commit comments