You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by Scott Eade <se...@backstagetech.com.au> on 2002/07/10 14:47:36 UTC

[patch] NPE in org.apache.jmeter.gui.MainFrame.java

Hi,

Below is a patch that fixes a NPE in MainFrame when a test completes.  This
is a superficial fix only - i.e. It just avoids the NPE rather than tracing
back to see if there is a logic problem somewhere else that is the root
cause of the problem.

I know I am meant to use unidiff format, but my cvs is doing strange things.

Regards,

Scott
-- 
Scott Eade
Backstage Technologies Pty. Ltd.


Index: MainFrame.java

===================================================================

RCS file: 
/home/cvspublic/jakarta-jmeter/src_1/org/apache/jmeter/gui/MainFrame.java,v
retrieving revision 1.13
diff -r1.13 MainFrame.java
291c291,294
<         stoppingMessage.dispose();
---
>         if (null != stoppingMessage)
>         {
>             stoppingMessage.dispose();
>         }


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>