Changeset 76a109


Ignore:
Timestamp:
Feb 4, 2015, 9:56:43 PM (10 years ago)
Author:
Frederik Heber <heber@…>
Children:
3e6b93
Parents:
2e7afe
git-author:
Frederik Heber <heber@…> (09/23/14 16:14:18)
git-committer:
Frederik Heber <heber@…> (02/04/15 21:56:43)
Message:

FIX: Setting ActionQueue::_lastchangedaction without heeding whether Action failed is bad.

  • causes segfault when notification informs about change and _lastchangeaction is still NULL (as the very first Action failed).
  • we now only notify when action succeeded.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ActionQueue.cpp

    r2e7afe r76a109  
    200200        mtx_queue.unlock();
    201201      }
     202      if (lastActionOk) {
     203        OBSERVE;
     204        NOTIFY(ActionQueued);
     205        _lastchangedaction = actionqueue[CurrentAction];
     206      }
    202207      // access actionqueue, hence using mutex
    203208      mtx_queue.lock();
Note: See TracChangeset for help on using the changeset viewer.