Changeset 4674
- Timestamp:
- Dec 4, 2013 4:05:02 AM (9 years ago)
- Location:
- pjproject/branches/projects/pjsua2
- Files:
-
- 24 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/pjsua2/pjsip/src/pjsua2/account.cpp
r4659 r4674 659 659 while(buddyList.size() > 0) { 660 660 Buddy *b = buddyList[0]; 661 delete b; 661 delete b; /* this will remove itself from the list */ 662 662 } 663 663 -
pjproject/branches/projects/pjsua2/pjsip/src/pjsua2/endpoint.cpp
r4672 r4674 375 375 while(mediaList.size() > 0) { 376 376 AudioMedia *cur_media = mediaList[0]; 377 delete cur_media; 377 delete cur_media; /* this will remove itself from the list */ 378 378 } 379 379
Note: See TracChangeset
for help on using the changeset viewer.