You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-chemistry/pymol/files/pymol-2.5.0-format-security...

16 lines
562 B

Author: Michael Banck <mbanck@debian.org>
Description: Fix "error: format not a string literal and no format arguments [-Werror=format-security]" (#759860)
Forwarded: yes
--- a/contrib/uiuc/plugins/molfile_plugin/src/maeffplugin.cpp
+++ b/contrib/uiuc/plugins/molfile_plugin/src/maeffplugin.cpp
@@ -2004,7 +2004,7 @@ namespace {
}
}
catch (std::exception &e) {
- fprintf(stderr, "%s", e.what());
+ fprintf(stderr, "Cannot write timestamp to mae file: %s\n", e.what());
return MOLFILE_ERROR;
}
return MOLFILE_SUCCESS;