We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had a segfault here :
uvgRTP/src/rtp.cc
Line 323 in f75942b
The (*out)->payload is null, and if I am reading the code well, is only initialized a few lines after.
(*out)->payload
I believe the proper code should be: uint8_t padding_len = packet[size - 1]; But I am not entirely sure.
uint8_t padding_len = packet[size - 1];
The text was updated successfully, but these errors were encountered:
We haven't tested the padding much. At least, it should not crash if the payload size is 0.
BR, Joni
Sorry, something went wrong.
Merge pull request #222 from Atlas42/master
af65310
Fixing Null pointer in rtp.cc #220
Fixed by 69f869c. Thanks.
No branches or pull requests
I had a segfault here :
uvgRTP/src/rtp.cc
Line 323 in f75942b
The
(*out)->payload
is null, and if I am reading the code well, is only initialized a few lines after.I believe the proper code should be:
uint8_t padding_len = packet[size - 1];
But I am not entirely sure.
The text was updated successfully, but these errors were encountered: