summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/llcache.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/content/llcache.c b/content/llcache.c
index 1cff74f53..655265bdb 100644
--- a/content/llcache.c
+++ b/content/llcache.c
@@ -1548,10 +1548,22 @@ void llcache_fetch_callback(fetch_msg msg, void *p, const void *data,
break;
case FETCH_FINISHED:
/* Finished fetching */
+ {
+ uint8_t *temp;
+
object->fetch.state = LLCACHE_FETCH_COMPLETE;
object->fetch.fetch = NULL;
+ /* Shrink source buffer to required size */
+ temp = realloc(object->source_data,
+ object->source_len);
+ if (temp != NULL) {
+ object->source_data = temp;
+ object->source_alloc = object->source_len;
+ }
+
llcache_object_cache_update(object);
+ }
break;
/* Out-of-band information */