Ignore:
Timestamp:
11/16/11 21:55:19 (13 years ago)
Author:
tbretz
Message:
Fixed a bug which could cause crahses when a transmission is interrupted at the moment the connection is opened and e.g. the bias crate is not yet switched on.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Connection.cc

    r11528 r12540  
    198198    // functions directly from any other place then Handlers, use
    199199    // PostMessage instead
    200     fOutQueue.pop_front();
     200    if (!fOutQueue.empty())
     201        fOutQueue.pop_front();
    201202
    202203    if (fOutQueue.empty())
Note: See TracChangeset for help on using the changeset viewer.