Package: nsis / 3.08-3

Metadata

Package Version Patches format
nsis 3.08-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
keep seh.patch | (download)

SCons/utils.py | 4 2 + 2 - 0 !
Source/build.cpp | 2 1 + 1 - 0 !
2 files changed, 3 insertions(+), 3 deletions(-)

 keep structured exception handling (seh) flag
halibut fputs for strings.patch | (download)

Docs/src/bin/halibut/bk_xhtml.c | 108 54 + 54 - 0 !
1 file changed, 54 insertions(+), 54 deletions(-)

 fix fprintf format security warnings for halibut
 If the format security warnings of the (GNU) compiler are made fatal via
 the -Werror=format-security option then the compilation of halibut is
 going to fail.
 .
 The fprintf function expects the following arguments: output stream,
 format string and subsequent arguments as specified in the format string.
 fprintf(fp, "%s", string) should be used instead of fprintf(fp, string)
 to be safe and compliant. However fputs is more efficient in these
 cases and as consequence it was used instead in the attached patch.
 .