aboutsummaryrefslogtreecommitdiff
path: root/src/util/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/strings.c')
-rw-r--r--src/util/strings.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/strings.c b/src/util/strings.c
index 9510b3b3b..41180dd71 100644
--- a/src/util/strings.c
+++ b/src/util/strings.c
@@ -1148,7 +1148,7 @@ GNUNET_STRINGS_path_is_absolute (const char *filename,
1148 if (r_uri_scheme) 1148 if (r_uri_scheme)
1149 *r_uri_scheme = uri; 1149 *r_uri_scheme = uri;
1150 else 1150 else
1151 GNUNET_free_non_null (uri); 1151 GNUNET_free (uri);
1152 1152
1153 return GNUNET_STRINGS_path_is_absolute (post_scheme_path, 1153 return GNUNET_STRINGS_path_is_absolute (post_scheme_path,
1154 GNUNET_NO, 1154 GNUNET_NO,
@@ -1985,7 +1985,7 @@ GNUNET_STRINGS_base64_decode (const char *data, size_t len, void **out)
1985 "ignoring CR/LF\n"); \ 1985 "ignoring CR/LF\n"); \
1986 i++; \ 1986 i++; \
1987 if (i >= len) \ 1987 if (i >= len) \
1988 goto END; \ 1988 goto END; \
1989 } 1989 }
1990 1990
1991 GNUNET_assert (len / 3 < SIZE_MAX); 1991 GNUNET_assert (len / 3 < SIZE_MAX);