jlec 14/12/26 11:28:07 Added: qhull-2012.1-format-security.patch Log: media-libs/qhull: Fix format-security problems, #528110 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path 1.1 media-libs/qhull/files/qhull-2012.1-format-security.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/files/qhull-2012.1-format-security.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/files/qhull-2012.1-format-security.patch?rev=1.1&content-type=text/plain Index: qhull-2012.1-format-security.patch =================================================================== src/libqhull/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libqhull/io.c b/src/libqhull/io.c index 09a0079..2bd066e 100644 --- a/src/libqhull/io.c +++ b/src/libqhull/io.c @@ -2238,7 +2238,7 @@ void qh_printfacet3math(FILE *fp, facetT *facet, qh_PRINT format, int notfirst) qh_memfree(point, qh normal_size); qh_settempfree(&points); qh_settempfree(&vertices); - qh_fprintf(fp, 9110, endfmt); + fprintf(fp, "%s", endfmt); } /* printfacet3math */
