/hg/icedtea6: Fix minor logic bug in earlier commit.
cpdev-commits at icedtea.classpath.org
cpdev-commits at icedtea.classpath.org
Tue Aug 25 22:10:29 PDT 2009
changeset f1cd6ab69a53 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=f1cd6ab69a53
summary: Fix minor logic bug in earlier commit.
diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
ChangeLog | 5 +++++
plugin/icedtea/sun/applet/PluginAppletViewer.java | 2 +-
diffs (24 lines):
diff -r afef68fb795d -r f1cd6ab69a53 ChangeLog
--- a/ChangeLog Tue Aug 25 12:07:24 2009 -0400
+++ b/ChangeLog Wed Aug 26 01:14:21 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 afef68fb795d -r f1cd6ab69a53 plugin/icedtea/sun/applet/PluginAppletViewer.java
--- a/plugin/icedtea/sun/applet/PluginAppletViewer.java Tue Aug 25 12:07:24 2009 -0400
+++ b/plugin/icedtea/sun/applet/PluginAppletViewer.java Wed Aug 26 01:14:21 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