Hi, I built an application using the Zoom meeting SDK for linux based on the (seemingly-removed) example on Github (meetingsdk-linux-raw-recording-sample). I built this using version 6.4.10.2701. I am trying to upgrade to version 6.5.10.4407 and am running into a segmentation fault issue.
Steps to Reproduce:
- Start from the zoom demo code that was on github. Uncomment the code in the method
onMeetingEndsQuitApp
void onMeetingEndsQuitApp() {
CleanSDK();
std::exit(0);
}
- Start a meeting, have the bot join, then end the meeting. In version 6.4.10.2701, the docker container exits successfully. With version 6.5.10.4407 (after making a couple of updates to get it to build with the breaking changes to
MeetingParticipantsCtrlEventListener
andonShareAudioRawDataReceived
), the same process is giving me a segmentation fault.
Are there other changes that need to made after this upgrade to get the bot code to exit successfully?
Thanks!