Changeset 5466 for pjproject


Ignore:
Timestamp:
Oct 21, 2016 7:40:47 AM (7 years ago)
Author:
nanang
Message:

Misc (re #1945): Fixed false error message "cannot find Account.." when deleting PJSUA2 Account (thanks Kal for the report).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua2/account.cpp

    r5455 r5466  
    683683        } 
    684684 
    685         pjsua_acc_set_user_data(id, NULL); 
     685        // This caused error message of "Error: cannot find Account.." 
     686        // when Endpoint::on_reg_started() is called for unregistration. 
     687        //pjsua_acc_set_user_data(id, NULL); 
     688 
    686689        pjsua_acc_del(id); 
    687690    } 
Note: See TracChangeset for help on using the changeset viewer.