You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
first of all, thank you very much for your OpenSSL 1.1 fixes in librtmp! 🎉
But I think there were some problems left. For example, you used "getter" functions to get a const pointer to internal data that really should be used "read-only", but then you assign new value to it. This causes compiler warning - for a reason 😏
I think we should use "setter" method to update internal fields of DH struct. Also fixed a few other compiler warnings.
Hello,
first of all, thank you very much for your OpenSSL 1.1 fixes in librtmp! 🎉
But I think there were some problems left. For example, you used "getter" functions to get a const pointer to internal data that really should be used "read-only", but then you assign new value to it. This causes compiler warning - for a reason 😏
I think we should use "setter" method to update internal fields of
DH
struct. Also fixed a few other compiler warnings.This patch was made against the latest librtmp version (
f1b83c10
) taken from:http://git.ffmpeg.org/rtmpdump
Patch:
librtmp-openssl-1.1.x-build-fixes.diff
Regards.
The text was updated successfully, but these errors were encountered: