GUACAMOLE-2153: Fix GUAC_*_UTF16 on big-endian machine#618
Merged
necouchman merged 1 commit intoapache:staging/1.6.1from Nov 3, 2025
Merged
GUACAMOLE-2153: Fix GUAC_*_UTF16 on big-endian machine#618necouchman merged 1 commit intoapache:staging/1.6.1from
necouchman merged 1 commit intoapache:staging/1.6.1from
Conversation
Contributor
|
@sertonix Thank you very, much, we appreciate the contribution. Before we can accept and merge these changes you'll need to follow our standard contribution guidelines, which includes:
See the following links for more info: |
Contributor
Author
|
I think I did the things as requested |
necouchman
approved these changes
Nov 3, 2025
Contributor
|
@sertonix Sorry, didn't catch one thing - can you rebase against the |
Since UTF-16 works with 16-bit values it has a byte order and that byte order is not well defined. There is a convention to use U+FEFF as first character which allows determining the endianess but it's commonly not present and doesn't seem to fit into the current code. The most common thing is to assume little-endian which is what I did here and is already implied by the test suite. If supporting both big- and little-endian UTF-16 is wanted one could create _UTF16LE and _UTF16BE variations of the functions.
Contributor
Author
|
Like this? |
Contributor
Yep, looks good. Thank you! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Since UTF-16 works with 16-bit values it has a byte order and that byte order is not well defined. There is a convention to use U+FEFF as first character which allows determining the endianess but it's commonly not present and doesn't seem to fit into the current code. The most common thing is to assume little-endian which is what I did here and is already implied by the test suite. If supporting both big- and little-endian UTF-16 is wanted one could create _UTF16LE and _UTF16BE variations of the functions.