Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/433f47641e501d30f55c5...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/433f47641e501d30f55c55c...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/433f47641e501d30f55c55cb0...
The branch, master has been updated
via 433f47641e501d30f55c55cb0a17c0397a35fd14 (commit)
from 6f1ed5979d9c2d775fedaa4d5defb9b1ea18f178 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=433f47641e501d30f55...
commit 433f47641e501d30f55c55cb0a17c0397a35fd14
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Fix mention of nsurl_destroy.
diff --git a/utils/nsurl.h b/utils/nsurl.h
index 13f7e5f..b84f55e 100644
--- a/utils/nsurl.h
+++ b/utils/nsurl.h
@@ -57,7 +57,7 @@ typedef enum nsurl_component {
*
* If return value != NSERROR_OK, nothing will be returned in url.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*/
nserror nsurl_create(const char * const url_s, nsurl **url);
@@ -224,7 +224,7 @@ uint32_t nsurl_hash(const nsurl *url);
*
* If return value != NSERROR_OK, nothing will be returned in join.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*/
nserror nsurl_join(const nsurl *base, const char *rel, nsurl **joined);
@@ -239,7 +239,7 @@ nserror nsurl_join(const nsurl *base, const char *rel, nsurl
**joined);
*
* If return value != NSERROR_OK, nothing will be returned in no_frag.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*/
nserror nsurl_defragment(const nsurl *url, nsurl **no_frag);
@@ -255,7 +255,7 @@ nserror nsurl_defragment(const nsurl *url, nsurl **no_frag);
*
* If return value != NSERROR_OK, nothing will be returned in new_url.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*
* Any fragment in url is replaced with frag in new_url.
@@ -273,7 +273,7 @@ nserror nsurl_refragment(const nsurl *url, lwc_string *frag, nsurl
**new_url);
*
* If return value != NSERROR_OK, nothing will be returned in new_url.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*
* Any query component in url is replaced with query in new_url.
@@ -304,7 +304,7 @@ nserror nsurl_nice(const nsurl *url, char **result, bool
remove_extensions);
*
* If return value != NSERROR_OK, nothing will be returned in new_url.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*
* As well as stripping top most path segment, query and fragments are stripped.
-----------------------------------------------------------------------
Summary of changes:
utils/nsurl.h | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/utils/nsurl.h b/utils/nsurl.h
index 13f7e5f..b84f55e 100644
--- a/utils/nsurl.h
+++ b/utils/nsurl.h
@@ -57,7 +57,7 @@ typedef enum nsurl_component {
*
* If return value != NSERROR_OK, nothing will be returned in url.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*/
nserror nsurl_create(const char * const url_s, nsurl **url);
@@ -224,7 +224,7 @@ uint32_t nsurl_hash(const nsurl *url);
*
* If return value != NSERROR_OK, nothing will be returned in join.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*/
nserror nsurl_join(const nsurl *base, const char *rel, nsurl **joined);
@@ -239,7 +239,7 @@ nserror nsurl_join(const nsurl *base, const char *rel, nsurl
**joined);
*
* If return value != NSERROR_OK, nothing will be returned in no_frag.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*/
nserror nsurl_defragment(const nsurl *url, nsurl **no_frag);
@@ -255,7 +255,7 @@ nserror nsurl_defragment(const nsurl *url, nsurl **no_frag);
*
* If return value != NSERROR_OK, nothing will be returned in new_url.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*
* Any fragment in url is replaced with frag in new_url.
@@ -273,7 +273,7 @@ nserror nsurl_refragment(const nsurl *url, lwc_string *frag, nsurl
**new_url);
*
* If return value != NSERROR_OK, nothing will be returned in new_url.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*
* Any query component in url is replaced with query in new_url.
@@ -304,7 +304,7 @@ nserror nsurl_nice(const nsurl *url, char **result, bool
remove_extensions);
*
* If return value != NSERROR_OK, nothing will be returned in new_url.
*
- * It is up to the client to call nsurl_destroy when they are finished with
+ * It is up to the client to call nsurl_unref when they are finished with
* the created object.
*
* As well as stripping top most path segment, query and fragments are stripped.
--
NetSurf Browser