summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/llcache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/llcache.c b/content/llcache.c
index 7f44cc916..b9a19aabf 100644
--- a/content/llcache.c
+++ b/content/llcache.c
@@ -346,7 +346,8 @@ nserror llcache_handle_abort(llcache_handle *handle)
llcache_object_add_user(newobject, user);
/* Add new object to uncached list */
- llcache_object_add_to_list(object, &llcache_uncached_objects);
+ llcache_object_add_to_list(newobject,
+ &llcache_uncached_objects);
/* And use it from now on. */
object = newobject;