From 112a844d05f417df93ca9e14ef80430953f60160 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Sun, 16 Mar 2014 01:40:03 +0100 Subject: [PATCH] orte-idl: Fix possible security problem --- orte/idl-compiler/orte-idl-c-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/idl-compiler/orte-idl-c-utils.c b/orte/idl-compiler/orte-idl-c-utils.c index 10b36c9..8d95b3f 100644 --- a/orte/idl-compiler/orte-idl-c-utils.c +++ b/orte/idl-compiler/orte-idl-c-utils.c @@ -203,7 +203,7 @@ void orte_cbe_write_typespec(FILE *of, IDL_tree tree) { char *name = orte_cbe_get_typespec_str(tree); - fprintf( of, name); + fprintf( of, "%s", name); g_free(name); } -- 2.39.2