From: Michal Sojka Date: Sun, 16 Mar 2014 00:40:03 +0000 (+0100) Subject: orte-idl: Fix possible security problem X-Git-Url: https://rtime.felk.cvut.cz/gitweb/orte.git/commitdiff_plain/112a844d05f417df93ca9e14ef80430953f60160?ds=sidebyside orte-idl: Fix possible security problem --- 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); }