smlinux/gtk/gtk3/charcode.patch
PktSurf 9d657e0a1d Upgraded base/perl to 5.38.0
Renamed .SMBuild files to smbuild for simplicity
Added musl-fts, musl-obstack, glslang, python-glad, libptytty, libmilter, elfutils and fuse to base section build list
Discarded fuse2 and fuse3 from base section
Temporarily discarded slapt-get, syslinux, p7zip, acpid, libelf-compat, gnu-eif, libtirpc, mozilla-nss,
lua53, qpdf, kernel-source and signify from base section build list
Disabled nls and made amends to base/e2fsprogs
Upgraded base/git to 2.46.2
Upgraded extra/gnumeric to 1.12.57
Disabled nls in base/gnutls, extra/dia
Disabled a patch and made amends in base/llvm
Fixed configure.local file in base/mandoc
Upgraded base/rust to 1.79
Fixed a ton of build files to use build prefix as /usr and miscellaneous changes
Discarded extra/bluez,blueman,scrcpy,adafruit-io
Added tomb to extra
Added new build option to extra/libass
Upgraded extra/mpv to 0.37.0
Disabled tests in gtk/gdk-pixbuf
Upgraded gtk/goffice to 0.10.57
Added gtk-doc to gtk section
Fixed build options in gtk/gtk2
Added new patches to gtk/gtk3
Added gtksourceview to gtk section
Added vulkan-headers to xorg section
Upgraded xorg/mesa to 23.1.9
Added libplacebo to xorg section
Fixed build stuff in xorg/glew
2024-10-29 20:25:20 +05:30

33 lines
1 KiB
Diff

Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/commit/6dc75b46cc9afe1c98b7ba72a9b1a275c723ea42
--
From 6dc75b46cc9afe1c98b7ba72a9b1a275c723ea42 Mon Sep 17 00:00:00 2001
From: liiulinsong <liulinsong@kylinos.cn>
Date: Fri, 26 May 2023 10:18:58 +0800
Subject: [PATCH] Make sure that the charcode is signless
1. The data with type of char is signed by default.
2. The byte value of UTF-8 is signless by default.
3. So, if a UTF-8 charcode is stored in a char array, we should cast the
type of its value from char to unsigned char.
---
gtk/gtkcssparser.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gtk/gtkcssparser.c b/gtk/gtkcssparser.c
index 44ff7bcfca7..fc8ede28b88 100644
--- a/gtk/gtkcssparser.c
+++ b/gtk/gtkcssparser.c
@@ -373,7 +373,7 @@ _gtk_css_parser_read_char (GtkCssParser *parser,
parser->data++;
return TRUE;
}
- if (*parser->data >= 127)
+ if ((*(guchar *) parser->data) >= 127)
{
gsize len = g_utf8_skip[(guint) *(guchar *) parser->data];
--
GitLab