Skip to content

Commit

Permalink
Fix multiple conversions from the GUI (Issue #496)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Dec 9, 2022
1 parent 5dd2817 commit a4b0dfe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes in HTMLDOC v1.9.17

- Fixed multiple conversions of UTF-8 HTML files from the GUI (Issue #496)
- Fixed some minor CodeQL warnings.


Expand Down
2 changes: 1 addition & 1 deletion doc/1-intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<head>
<meta name="author" content="Michael R Sweet">
<meta name="copyright" content="Copyright &copy; 1997-2022, All Rights Reserved.">
<meta name="docversion" content="htmldoc-1.9.16">
<meta name="docversion" content="htmldoc-1.9.17">
<meta name="keywords" content="Software">
<title>HTMLDOC Users Manual</title>
</head>
Expand Down
2 changes: 2 additions & 0 deletions htmldoc/htmllib.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2510,6 +2510,8 @@ htmlSetCharSet(const char *cs) /* I - Character set file to load */
// bottom 128 characters matching US ASCII...
_htmlUTF8 = 0x80;

memset(_htmlCharacters, 0, sizeof(_htmlCharacters));

for (i = 0; i < 128; i ++)
{
/*
Expand Down

0 comments on commit a4b0dfe

Please sign in to comment.