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:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to