# HG changeset patch # User dadubrow # Date 1284650159 18000 # Node ID e290bb67ac00660e8dba356356b83e16888516fe # Parent fc0ca46d10e2c8b4823e3468c6da02488db627e2 fix NPE diff -r fc0ca46d10e2 -r e290bb67ac00 connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/view/DescriptionLabelProvider.java --- a/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/view/DescriptionLabelProvider.java Thu Sep 16 09:25:20 2010 -0500 +++ b/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/view/DescriptionLabelProvider.java Thu Sep 16 10:15:59 2010 -0500 @@ -108,7 +108,8 @@ break; case SWT.MouseDown: String linkHRef = getLinkHRef(event); - handleLinkClicked(linkHRef, event); + if (linkHRef != null) + handleLinkClicked(linkHRef, event); break; default: }