diff --git a/common/JackNetAPI.cpp b/common/JackNetAPI.cpp index c0d72e53..5934f7a2 100644 --- a/common/JackNetAPI.cpp +++ b/common/JackNetAPI.cpp @@ -693,6 +693,8 @@ struct JackNetExtSlave : public JackNetSlaveInterface, public JackRunnableInterf // By default fFrames is fPeriodSize fFrames = fParams.fPeriodSize; + + SessionParamsDisplay(&fParams); AllocPorts(); return 0; diff --git a/common/JackNetInterface.cpp b/common/JackNetInterface.cpp index 25303494..fff5e80f 100644 --- a/common/JackNetInterface.cpp +++ b/common/JackNetInterface.cpp @@ -227,7 +227,11 @@ namespace Jack int JackNetInterface::FinishRecv(NetAudioBuffer* buffer) { - buffer->RenderToJackPorts(fRxHeader.fFrames); + if (buffer) { + buffer->RenderToJackPorts(fRxHeader.fFrames); + } else { + jack_error("FinishRecv with null buffer..."); + } return DATA_PACKET_ERROR; }