Changeset 2497

Show
Ignore:
Timestamp:
10/06/08 08:44:11 (3 months ago)
Author:
dsanders
Message:

Modified close method to access m_context directly, so it would not attempt to create an m_context when none had been created.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/otis/src/org/bandit/otis/impl/RemoteAuthSession.java

    r2462 r2497  
    638638                try 
    639639                { 
    640                         getContext().close(); 
     640                        if (m_context != null) 
     641                        { 
     642                                m_context.close(); 
     643                        } 
    641644                        clear(); 
    642645                }