Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/vmd/files: vmd-1.9.2-format-security.patch
Date: Fri, 06 Mar 2015 10:07:20
Message-Id: 20150306100711.CC39913282@oystercatcher.gentoo.org
1 jlec 15/03/06 10:07:11
2
3 Added: vmd-1.9.2-format-security.patch
4 Log:
5 Version BUmp; install optional plugins, #517886
6
7 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
8
9 Revision Changes Path
10 1.1 sci-chemistry/vmd/files/vmd-1.9.2-format-security.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/vmd/files/vmd-1.9.2-format-security.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/vmd/files/vmd-1.9.2-format-security.patch?rev=1.1&content-type=text/plain
14
15 Index: vmd-1.9.2-format-security.patch
16 ===================================================================
17 plugins/molfile_plugin/src/maeffplugin.cxx | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/plugins/molfile_plugin/src/maeffplugin.cxx b/plugins/molfile_plugin/src/maeffplugin.cxx
21 index cfe1223..41d92bb 100644
22 --- a/plugins/molfile_plugin/src/maeffplugin.cxx
23 +++ b/plugins/molfile_plugin/src/maeffplugin.cxx
24 @@ -1979,7 +1979,7 @@ namespace {
25 }
26 }
27 catch (std::exception &e) {
28 - fprintf(stderr, e.what());
29 + fprintf(stderr, "%s", e.what());
30 return MOLFILE_ERROR;
31 }
32 return MOLFILE_SUCCESS;