[Scummvm-git-logs] scummvm branch-2-5 -> 275e371c991803601fea0a47db9df9f1fa8761a9
sev-
sev at scummvm.org
Wed Nov 10 19:16:13 UTC 2021
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
2d9cbf6483 COMMON: Fix punycode implementation for upper Unicode characters
275e371c99 NEWS: Mention Punycode fix
Commit: 2d9cbf648370ce44f2da668a309ee27608f24e2f
https://github.com/scummvm/scummvm/commit/2d9cbf648370ce44f2da668a309ee27608f24e2f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-11-10T20:15:35+01:00
Commit Message:
COMMON: Fix punycode implementation for upper Unicode characters
Changed paths:
common/punycode.cpp
diff --git a/common/punycode.cpp b/common/punycode.cpp
index 9bb8446762..a526a4768f 100644
--- a/common/punycode.cpp
+++ b/common/punycode.cpp
@@ -57,7 +57,7 @@ namespace Common {
#define DAMP 700
#define INITIAL_N 128
#define INITIAL_BIAS 72
-#define SMAX 0x10ffff // maximum Unicode code point
+#define SMAX 2147483647 // maximum Unicode code point
#define SPECIAL_SYMBOLS "/\":*[]+|\\?%<>,;="
Commit: 275e371c991803601fea0a47db9df9f1fa8761a9
https://github.com/scummvm/scummvm/commit/275e371c991803601fea0a47db9df9f1fa8761a9
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-11-10T20:16:00+01:00
Commit Message:
NEWS: Mention Punycode fix
Changed paths:
NEWS.md
diff --git a/NEWS.md b/NEWS.md
index 27e95edd81..bd8534b9a7 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -5,6 +5,7 @@ For a more comprehensive changelog of the latest experimental code, see:
General:
- Ported ResidualVM GUI theme to remastered version.
+ - Fixed edge case for Punycode.
AGOS:
- Fixed old Waxworks AdLib music regression.
More information about the Scummvm-git-logs
mailing list