[gtk/im-context-work] composetable: Don't use GSlice for big blobs
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/im-context-work] composetable: Don't use GSlice for big blobs
- Date: Tue, 2 Feb 2021 16:54:15 +0000 (UTC)
commit 58658e4d6fe3d9109996cde7d1853ec5319d829b
Author: Matthias Clasen <mclasen redhat com>
Date: Tue Feb 2 01:15:00 2021 -0500
composetable: Don't use GSlice for big blobs
This just doesn't make sense. This will use malloc
anyway, so just call malloc directly.
gtk/gtkcomposetable.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkcomposetable.c b/gtk/gtkcomposetable.c
index add4cf4b66..cfb51e6e81 100644
--- a/gtk/gtkcomposetable.c
+++ b/gtk/gtkcomposetable.c
@@ -503,11 +503,11 @@ gtk_compose_table_serialize (GtkComposeTable *compose_table,
g_return_val_if_fail (index_stride > 0, NULL);
length = strlen (header);
- total_length = length + sizeof (guint16) * (3 + index_stride * n_seqs);
+ total_length = length + sizeof (guint16) * (3 + index_stride * n_seqs);
if (count)
*count = total_length;
- p = contents = g_slice_alloc (total_length);
+ p = contents = g_malloc (total_length);
memcpy (p, header, length);
p += length;
@@ -689,7 +689,7 @@ gtk_compose_table_save_cache (GtkComposeTable *compose_table)
}
out_save_cache:
- g_slice_free1 (length, contents);
+ g_free (contents);
g_free (path);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]