Sometimes I got the assert error in DUM when my application is running,
ServerInviteSession.cxx:
ServerInviteSession::accept(int code)
case UAS_Accepted:
case UAS_WaitingToOffer:
case UAS_WaitingToRequestOffer:
assert(0); // Already Accepted ======> this assert error was reported
break;
I think it will no appears if I can compile the resip in nodebug mode(release mode).
I've tried add a line in Makefile.osarch:
VOCAL_COMPILE_TYPE := nodebug //======> added this line
ifdef LIB_DYNAMIC
BUILD_SHARED_LIBS := yes
endif
But seems the assert still effect.