blob: a4889ce4909e4bd8054ce8e3a015b288d8844bea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#
# Jon Kåre:
# * Work around vulnerability in Python. CVE-2009-0318 [#569648]
#
# https://bugs.gentoo.org/show_bug.cgi?id=257012
# https://bugzilla.redhat.com/show_bug.cgi?id=481572
--- branches/gnumeric-1-8/plugins/python-loader/gnm-py-interpreter.c 2009/01/29 14:08:41 17110
+++ branches/gnumeric-1-8/plugins/python-loader/gnm-py-interpreter.c 2009/01/29 14:33:02 17111
@@ -79,7 +79,7 @@
G_TYPE_NONE, 0);
}
-static char *plugin_argv[] = {(char *) "gnumeric", NULL};
+static char *plugin_argv[] = {(char *) "/dev/null/python/is/buggy/gnumeric", NULL};
GnmPyInterpreter *
gnm_py_interpreter_new (GOPlugin *plugin)
|