summaryrefslogtreecommitdiffstats
path: root/plugins/uriparser/UriNormalize.c
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2018-05-31 13:32:09 (GMT)
committerSven Nierlein <sven@nierlein.de>2018-10-22 14:30:31 (GMT)
commitc5cd0e491238397bd9cafff2707773146305a528 (patch)
treef6f77edb59073932167f1e862b96143daaa63aa8 /plugins/uriparser/UriNormalize.c
parent7dd0a31b285121ae2b4af019e7b337e5eb0427af (diff)
downloadmonitoring-plugins-c5cd0e491238397bd9cafff2707773146305a528.tar.gz
updated bundled version of uriparser to 0.8.5
Diffstat (limited to 'plugins/uriparser/UriNormalize.c')
-rw-r--r--plugins/uriparser/UriNormalize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/uriparser/UriNormalize.c b/plugins/uriparser/UriNormalize.c
index 49db9ff..d68c371 100644
--- a/plugins/uriparser/UriNormalize.c
+++ b/plugins/uriparser/UriNormalize.c
@@ -2,7 +2,7 @@
2 * uriparser - RFC 3986 URI parsing library 2 * uriparser - RFC 3986 URI parsing library
3 * 3 *
4 * Copyright (C) 2007, Weijia Song <songweijia@gmail.com> 4 * Copyright (C) 2007, Weijia Song <songweijia@gmail.com>
5 * Copyright (C) 2007, Sebastian Pipping <webmaster@hartwork.org> 5 * Copyright (C) 2007, Sebastian Pipping <sebastian@pipping.org>
6 * All rights reserved. 6 * All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
@@ -434,8 +434,8 @@ static URI_INLINE UriBool URI_FUNC(MakeOwner)(URI_TYPE(Uri) * uri,
434 && (ranger->text.afterLast != NULL) 434 && (ranger->text.afterLast != NULL)
435 && (ranger->text.afterLast > ranger->text.first)) { 435 && (ranger->text.afterLast > ranger->text.first)) {
436 free((URI_CHAR *)ranger->text.first); 436 free((URI_CHAR *)ranger->text.first);
437 free(ranger);
438 } 437 }
438 free(ranger);
439 ranger = next; 439 ranger = next;
440 } 440 }
441 441