Package: html2text / 2.2.3-4

Metadata

Package Version Patches format
html2text 2.2.3-4 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
010_string before concat.patch | (download)

format.cpp | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 format(input): convert to string before concat
 The checked character for `<input type="checkbox">` was concatenated to
 the '[' and ']' characters before converting it to string, which
 resulted in an expression like '[' + 'X' + ']', which results in an
 arithmetic sum between the integer values of the three characters,
 leading to an unexpected result.
 .
 To fix this, simply wrap the checked ternary expression with a braced
 string constructor.