Changeset 3386


Ignore:
Timestamp:
Dec 5, 2010 2:03:31 PM (13 years ago)
Author:
ming
Message:

Misc (re #1151): Fixed crash in coreaudio_dev when there is no call during an interruption.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia-audiodev/coreaudio_dev.c

    r3335 r3386  
    768768    struct coreaudio_stream *strm = ((struct coreaudio_factory*)inClientData)-> 
    769769                                    stream; 
    770     pj_assert(strm); 
     770    if (!strm) 
     771        return; 
    771772 
    772773    PJ_LOG(3, (THIS_FILE, "Session interrupted! --- %s ---", 
Note: See TracChangeset for help on using the changeset viewer.