summaryrefslogtreecommitdiff
path: root/content/fetchers/about
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetchers/about')
-rw-r--r--content/fetchers/about/blank.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/fetchers/about/blank.c b/content/fetchers/about/blank.c
index b7ba52eaf..8ad774512 100644
--- a/content/fetchers/about/blank.c
+++ b/content/fetchers/about/blank.c
@@ -48,7 +48,8 @@ bool fetch_about_blank_handler(struct fetch_about_context *ctx)
if (fetch_about_send_header(ctx, "Content-Type: text/html"))
goto fetch_about_blank_handler_aborted;
- fetch_about_senddata(ctx, (const uint8_t *) buffer, strlen(buffer));
+ if (fetch_about_senddata(ctx, (const uint8_t *) buffer, strlen(buffer)) != NSERROR_OK)
+ goto fetch_about_blank_handler_aborted;
fetch_about_send_finished(ctx);