Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Empty input field resulted in empty byteArray and constData pointing to null, which rz_hex_bin2str didn't expect.
Your checklist for this pull request
Detailed description
Thanks @ravenexp for testing and debugging the problem.
Not only the function didn't handle empty QByteArray, there was a second hidden problem. The function reserved memory for 2n bytes but rz_hex_bin2str writes a null terminated string thus requiring 2n+1 bytes of space. The extra null byte write was probably also what caused the crash, just for non empty arrays single byte buffer overflow would most of the time not cause easily observable sideeffects.
Test plan (required)
Closing issues
Closes #3374, closes #3356