Ignore:
Timestamp:
Aug 3, 2009, 4:43:36 PM (15 years ago)
Author:
mies
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/communication/BaseCommunication.cpp

    r5624 r5628  
    5858/// adds an endpoint to the list
    5959void BaseCommunication::add_endpoint( const address_v* endpoint ) {
     60        if (endpoint==NULL) return;
    6061        BOOST_FOREACH( endpoint_reference& ref, remote_endpoints ) {
    6162                if (*ref.endpoint == *endpoint) {
     
    7273/// removes an endpoint from the list
    7374void BaseCommunication::remove_endpoint( const address_v* endpoint ) {
     75        if (endpoint==NULL) return;
    7476        for (vector<endpoint_reference>::iterator i = remote_endpoints.begin();
    7577                i != remote_endpoints.end(); i++) {
Note: See TracChangeset for help on using the changeset viewer.