jlec 15/03/03 19:58:09 Added: superlu-4.3-format-security.patch Log: Fix for format-security, #536118 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path 1.1 sci-libs/superlu/files/superlu-4.3-format-security.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/superlu/files/superlu-4.3-format-security.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/superlu/files/superlu-4.3-format-security.patch?rev=1.1&content-type=text/plain Index: superlu-4.3-format-security.patch =================================================================== SRC/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SRC/util.c b/SRC/util.c index 858fbbc..c038ccf 100644 --- a/SRC/util.c +++ b/SRC/util.c @@ -29,7 +29,7 @@ void superlu_abort_and_exit(char* msg) { - fprintf(stderr, msg); + fprintf(stderr, "%s", msg); exit (-1); }
