summaryrefslogtreecommitdiff
path: root/content/fs_backing_store.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-23 18:21:56 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-23 18:21:56 +0000
commit5a78cd810f68cbfad436ca2ce007112163990458 (patch)
treef4ab7d1808f148de0d0850766998d0ee474edda6 /content/fs_backing_store.c
parent01b2bc5a57068b8957ee63b73fa48714d71f9205 (diff)
downloadnetsurf-5a78cd810f68cbfad436ca2ce007112163990458.tar.gz
netsurf-5a78cd810f68cbfad436ca2ce007112163990458.tar.bz2
correctly release source data from llcache
Diffstat (limited to 'content/fs_backing_store.c')
-rw-r--r--content/fs_backing_store.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/fs_backing_store.c b/content/fs_backing_store.c
index 629ea2a9e..08a1ddd23 100644
--- a/content/fs_backing_store.c
+++ b/content/fs_backing_store.c
@@ -1329,7 +1329,7 @@ static nserror entry_release_alloc(struct store_entry_element *elem)
* Retrive an object from the backing store.
*
* @param[in] url The url is used as the unique primary key for the data.
- * @param[in] flags The flags to control how the object is retrieved.
+ * @param[in] bsflags The flags to control how the object is retrieved.
* @param[out] data_out The objects data.
* @param[out] datalen_out The length of the \a data retrieved.
* @return NSERROR_OK on success or error code on faliure.
@@ -1437,8 +1437,8 @@ fetch(nsurl *url,
/**
* release a previously fetched or stored memory object.
*
- * @param url The url is used as the unique primary key to invalidate.
- * @param[in] flags The flags to control how the object data is released.
+ * @param[in] url The url is used as the unique primary key to invalidate.
+ * @param[in] bsflags The flags to control how the object data is released.
* @return NSERROR_OK on success or error code on faliure.
*/
static nserror release(nsurl *url, enum backing_store_flags bsflags)