mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +01:00
guri: Allow params to be NULL if length is 0
Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
parent
ab33896bcc
commit
67c9d34d71
@ -1781,7 +1781,7 @@ g_uri_parse_params (const gchar *params,
|
|||||||
const gchar *end, *attr, *attr_end, *value, *value_end;
|
const gchar *end, *attr, *attr_end, *value, *value_end;
|
||||||
gchar *decoded_attr, *decoded_value;
|
gchar *decoded_attr, *decoded_value;
|
||||||
|
|
||||||
g_return_val_if_fail (params != NULL, NULL);
|
g_return_val_if_fail (length == 0 || params != NULL, NULL);
|
||||||
g_return_val_if_fail (length >= -1, NULL);
|
g_return_val_if_fail (length >= -1, NULL);
|
||||||
|
|
||||||
if (case_insensitive)
|
if (case_insensitive)
|
||||||
|
Loading…
Reference in New Issue
Block a user