Changeset 2496

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

Needed to test for context == null

Files:
1 modified

Legend:

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

    r2461 r2496  
    983983                                                IContext context = authMethod.getContext(); 
    984984                                                 
    985                                                 if ( !authMethod.isAuthenticated()) 
     985                                                if ( context == null || !authMethod.isAuthenticated()) 
    986986                                                        continue; 
    987987