/hg/release/icedtea6-1.6: Fix minor logic bug introduced in prev...

cpdev-commits at icedtea.classpath.org cpdev-commits at icedtea.classpath.org
Tue Aug 25 22:12:39 PDT 2009


changeset b732a13ecc53 in /hg/release/icedtea6-1.6
details: http://icedtea.classpath.org/hg/release/icedtea6-1.6?cmd=changeset;node=b732a13ecc53
summary: Fix minor logic bug introduced in previous commit.

diffstat:

2 files changed, 6 insertions(+), 1 deletion(-)
ChangeLog                                         |    5 +++++
plugin/icedtea/sun/applet/PluginAppletViewer.java |    2 +-

diffs (24 lines):

diff -r d8cd6df4b152 -r b732a13ecc53 ChangeLog
--- a/ChangeLog	Tue Aug 25 12:06:34 2009 -0400
+++ b/ChangeLog	Wed Aug 26 01:16:37 2009 -0400
@@ -1,3 +1,8 @@ 2009-08-25  Lillian Angel  <langel at redha
+2009-08-26  Deepak Bhole <dbhole at redhat.com>
+
+	* plugin/icedtea/sun/applet/PluginAppletViewer.java
+	(handleMessage): Fix logic bug introduced in previous commit.
+
 2009-08-25  Lillian Angel  <langel at redhat.com>
 
 	* NEWS: Added CVEs.
diff -r d8cd6df4b152 -r b732a13ecc53 plugin/icedtea/sun/applet/PluginAppletViewer.java
--- a/plugin/icedtea/sun/applet/PluginAppletViewer.java	Tue Aug 25 12:06:34 2009 -0400
+++ b/plugin/icedtea/sun/applet/PluginAppletViewer.java	Wed Aug 26 01:16:37 2009 -0400
@@ -589,7 +589,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
 
              // Wait for the panel to initialize
              // (happens in a separate thread)
-             while (panel == null || (o = panel.getApplet()) == null && ((NetxPanel) panel).isAlive()) {
+             while (panel == null || ((o = panel.getApplet()) == null && ((NetxPanel) panel).isAlive())) {
             	 try {
             		 Thread.sleep(2000);
             		 PluginDebug.debug("Waiting for applet to initialize...");



More information about the distro-pkg-dev mailing list