summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-09-18 20:16:57 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-09-18 20:16:57 -0400
commit7fc7c57b6fd470bbee267471a61c714f3a0d281c (patch)
treebf182ba0562146b572a6cc66fed72d3337248e39
parent861afbe63953c2442658444bc147a7ea15213b8a (diff)
downloadglib-7fc7c57b6fd470bbee267471a61c714f3a0d281c.tar.gz
GString: Bump minimum sizegstring-min-size
GString starts out at a size of 2, which is just not useful. Bump the minimum size to 64 to cut down on the number of tiny reallocations we do.
-rw-r--r--glib/gstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/gstring.c b/glib/gstring.c
index a400d4f24..17dc2c33d 100644
--- a/glib/gstring.c
+++ b/glib/gstring.c
@@ -123,7 +123,7 @@ g_string_sized_new (gsize dfl_size)
string->len = 0;
string->str = NULL;
- g_string_maybe_expand (string, MAX (dfl_size, 2));
+ g_string_maybe_expand (string, MAX (dfl_size, 64));
string->str[0] = 0;
return string;