summaryrefslogtreecommitdiff
path: root/utils/nsurl/nsurl.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2017-01-22 15:58:49 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2017-02-08 17:27:13 +0000
commit91a7fffd5637574aea7a1b52308968a99dee888c (patch)
tree8ddeeb41fb089945ac6aee9776e1ca23895402e1 /utils/nsurl/nsurl.c
parent2acd90e28a37a80f20e2780be7972764c699d9a0 (diff)
downloadnetsurf-91a7fffd5637574aea7a1b52308968a99dee888c.tar.gz
netsurf-91a7fffd5637574aea7a1b52308968a99dee888c.tar.bz2
nsurl: Tidy up component helper macros.
Diffstat (limited to 'utils/nsurl/nsurl.c')
-rw-r--r--utils/nsurl/nsurl.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/utils/nsurl/nsurl.c b/utils/nsurl/nsurl.c
index 79dc71663..137a5acef 100644
--- a/utils/nsurl/nsurl.c
+++ b/utils/nsurl/nsurl.c
@@ -50,8 +50,13 @@
#undef NSURL_DEBUG
-#define nsurl__component_copy(c) (c == NULL) ? NULL : lwc_string_ref(c)
-
+/**
+ * Compare two component values.
+ *
+ * Sets match to false if the components are not the same.
+ * Does nothing if the components are the same, so ensure match is
+ * preset to true.
+ */
#define nsurl__component_compare(c1, c2, match) \
if (c1 && c2 && lwc_error_ok == \
lwc_string_isequal(c1, c2, match)) { \