Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1760


Ignore:
Timestamp:
05/08/09 13:26:18 (15 years ago)
Author:
msteinbi
Message:

fixed null pointer exception in logout (#531)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientCommunicator.cs

    r1752 r1760  
    535535          // check wich job the client was calculating and reset it
    536536          foreach (Job job in allJobs) {
    537             if (job.Client.Id == client.Id) {
    538               jobManager.ResetJobsDependingOnResults(job);
     537            if (job.Client != null) {
     538              if (job.Client.Id == client.Id) {
     539                jobManager.ResetJobsDependingOnResults(job);
     540              }
    539541            }
    540542          }
Note: See TracChangeset for help on using the changeset viewer.