Skip to content

Commit 8a129c5

Browse files
committed
Fix a buffer underflow issue with GCC on Linux (Issue #360)
1 parent c1f19ab commit 8a129c5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changes in HTMLDOC v1.9.8
22

33
- Fixed a paragraph formatting issue with large inline images (Issue #369)
4+
- Fixed a buffer underflow issue (Issue #370)
45

56

67
# Changes in HTMLDOC v1.9.7

htmldoc/ps-pdf.cxx

+3-1
Original file line numberDiff line numberDiff line change
@@ -3761,7 +3761,9 @@ render_contents(tree_t *t, /* I - Tree to parse */
37613761
nptr < (number + sizeof(number) - 1) && width < right;
37623762
width += dot_width)
37633763
*nptr++ = '.';
3764-
nptr --;
3764+
3765+
if (nptr > number)
3766+
nptr --;
37653767

37663768
strlcpy((char *)nptr, pages[hpage].page_text, sizeof(number) - (size_t)(nptr - number));
37673769

0 commit comments

Comments
 (0)