summaryrefslogtreecommitdiff
path: root/content/handlers/text/textplain.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/handlers/text/textplain.c')
-rw-r--r--content/handlers/text/textplain.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/content/handlers/text/textplain.c b/content/handlers/text/textplain.c
index 692ba7ebe..9e9e3e9e0 100644
--- a/content/handlers/text/textplain.c
+++ b/content/handlers/text/textplain.c
@@ -554,8 +554,8 @@ static nserror textplain_clone(const struct content *old, struct content **newc)
const textplain_content *old_text = (textplain_content *) old;
textplain_content *text;
nserror error;
- const char *data;
- unsigned long size;
+ const uint8_t *data;
+ size_t size;
text = calloc(1, sizeof(textplain_content));
if (text == NULL)
@@ -576,7 +576,9 @@ static nserror textplain_clone(const struct content *old, struct content **newc)
data = content__get_source_data(&text->base, &size);
if (size > 0) {
- if (textplain_process_data(&text->base, data, size) == false) {
+ if (textplain_process_data(&text->base,
+ (const char *)data,
+ size) == false) {
content_destroy(&text->base);
return NSERROR_NOMEM;
}