diff options
Diffstat (limited to 'util/uri.c')
-rw-r--r-- | util/uri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/uri.c b/util/uri.c index 4238729b83..e348c1768c 100644 --- a/util/uri.c +++ b/util/uri.c @@ -2162,7 +2162,7 @@ query_params_append (struct QueryParams *ps, } ps->p[ps->n].name = g_strdup(name); - ps->p[ps->n].value = value ? g_strdup(value) : NULL; + ps->p[ps->n].value = g_strdup(value); ps->p[ps->n].ignore = 0; ps->n++; |