mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-28 10:07:13 +02:00
g_str_to_ascii(): a couple of minor tweaks
Add a precondition guard and use g_string_sized_new() to avoid some reallocations.
This commit is contained in:
@@ -331,6 +331,8 @@ g_str_to_ascii (const gchar *str,
|
|||||||
GString *result;
|
GString *result;
|
||||||
guint item_id;
|
guint item_id;
|
||||||
|
|
||||||
|
g_return_val_if_fail (str != NULL, NULL);
|
||||||
|
|
||||||
if (g_str_is_ascii (str))
|
if (g_str_is_ascii (str))
|
||||||
return g_strdup (str);
|
return g_strdup (str);
|
||||||
|
|
||||||
@@ -339,7 +341,7 @@ g_str_to_ascii (const gchar *str,
|
|||||||
else
|
else
|
||||||
item_id = get_default_item_id ();
|
item_id = get_default_item_id ();
|
||||||
|
|
||||||
result = g_string_new (NULL);
|
result = g_string_sized_new (strlen (str));
|
||||||
|
|
||||||
while (*str)
|
while (*str)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user