summaryrefslogtreecommitdiff
path: root/content/hlcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/hlcache.c')
-rw-r--r--content/hlcache.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/content/hlcache.c b/content/hlcache.c
index d18a76b6c..3a55dbeb4 100644
--- a/content/hlcache.c
+++ b/content/hlcache.c
@@ -175,7 +175,14 @@ nserror hlcache_llcache_callback(llcache_handle *handle,
/* should never happen: the handler must be changed */
break;
case LLCACHE_EVENT_ERROR:
- /** \todo handle errors */
+ if (ctx->handle->cb != NULL) {
+ hlcache_event hlevent;
+
+ hlevent.type = CONTENT_MSG_ERROR;
+ hlevent.data.error = event->data.msg;
+
+ ctx->handle->cb(ctx->handle, &hlevent, ctx->handle->pw);
+ }
break;
case LLCACHE_EVENT_PROGRESS:
break;