-
Hi, is it safe to call free resources right after ConnectionStart, SessionStart failed? I have something like this in my code: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The only risk is if you try to double free in the "shutdown complete" callbacks; but generally callbacks only happen if "start" was successful, so your current usage pattern seems fine to me. |
Beta Was this translation helpful? Give feedback.
The only risk is if you try to double free in the "shutdown complete" callbacks; but generally callbacks only happen if "start" was successful, so your current usage pattern seems fine to me.