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
In pipewire commit 0e847c97 the jack port name size was bumped up to 513 (256+256+\0 byte), which is above the hard-coded limit of 512.
\0
Possible solutions:
malloc
513
The text was updated successfully, but these errors were encountered:
I've just bumped into the same issue. The fix involves the jackpatch.c source only.
Sorry, something went wrong.
No branches or pull requests
In pipewire commit 0e847c97 the jack port name size was bumped up to 513 (256+256+
\0
byte), which is above the hard-coded limit of 512.Possible solutions:
malloc
to avoid the issue with dynamically sized arrays.513
and also add a safety cap to prevent this from buffer overflowing again.The text was updated successfully, but these errors were encountered: