Gentoo Archives: gentoo-commits

From: "Vlastimil Babka (caster)" <caster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/icedtea/files: 1.7.2-free.patch
Date: Wed, 31 Mar 2010 15:36:13
Message-Id: E1Nwzxg-0006RC-QG@stork.gentoo.org
1 caster 10/03/31 15:36:08
2
3 Added: 1.7.2-free.patch
4 Log:
5 Revbump to fix buffer overflow in npplugin.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-java/icedtea/files/1.7.2-free.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/icedtea/files/1.7.2-free.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/icedtea/files/1.7.2-free.patch?rev=1.1&content-type=text/plain
13
14 Index: 1.7.2-free.patch
15 ===================================================================
16
17 # HG changeset patch
18 # User doko@××××××.com
19 # Date 1270024644 -7200
20 # Node ID 94084cbf82d3960227b9252d40d286635d5cfefd
21 # Parent 6ff10812c44ae360727e752dd2173dc0133c77ea
22 Fix typo in IcedTeaNPPlugin.cc.
23
24 2010-03-31 Matthias Klose <doko@××××××.com>
25
26 * plugin/icedteanp/IcedTeaNPPlugin.cc (plugin_start_appletviewer):
27 Fix typo.
28
29 --- a/ChangeLog Wed Mar 31 02:58:12 2010 +0100
30 +++ b/ChangeLog Wed Mar 31 10:37:24 2010 +0200
31 @@ -1,3 +1,8 @@ 2010-03-31 Andrew John Hughes <ahughes
32 +2010-03-31 Matthias Klose <doko@××××××.com>
33 +
34 + * plugin/icedteanp/IcedTeaNPPlugin.cc (plugin_start_appletviewer):
35 + Fix typo.
36 +
37 2010-03-31 Andrew John Hughes <ahughes@××××××.com>
38
39 * configure.ac: Bump version to 1.7.2.
40 --- a/plugin/icedteanp/IcedTeaNPPlugin.cc Wed Mar 31 02:58:12 2010 +0100
41 +++ b/plugin/icedteanp/IcedTeaNPPlugin.cc Wed Mar 31 10:37:24 2010 +0200
42 @@ -1463,7 +1463,7 @@ plugin_start_appletviewer (GCJPluginData
43 command_line[5] = NULL;
44 } else
45 {
46 - command_line = (gchar**) malloc(sizeof(gchar)*3);
47 + command_line = (gchar**) malloc(sizeof(gchar*)*3);
48 command_line[0] = g_strdup(appletviewer_executable);
49 command_line[1] = g_strdup("sun.applet.PluginMain");
50 command_line[2] = NULL;