]> git.pld-linux.org Git - packages/seed.git/blame - format-security.patch
- fix format string error
[packages/seed.git] / format-security.patch
CommitLineData
014f8978
JR
1--- seed-3.8.1/libseed/seed-types.c~ 2013-04-16 09:58:20.000000000 +0200
2+++ seed-3.8.1/libseed/seed-types.c 2013-12-05 22:18:46.317881733 +0100
3@@ -1213,7 +1213,7 @@
4 {
5 char *error_message = g_strdup_printf ("Unable to make object from hash table indexed with values of type %s", g_type_tag_to_string (key_type_tag));
6 seed_make_exception (ctx, exception, "ArgumentError",
7- error_message);
8+ "%s", error_message);
9 g_free (error_message);
10 return JSValueMakeNull (ctx);
11 }
This page took 0.080482 seconds and 4 git commands to generate.