summaryrefslogtreecommitdiff
path: root/src/raptor_uri.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/raptor_uri.c')
-rw-r--r--src/raptor_uri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raptor_uri.c b/src/raptor_uri.c
index 7fd6c075..53768e72 100644
--- a/src/raptor_uri.c
+++ b/src/raptor_uri.c
@@ -765,7 +765,7 @@ raptor_uri_counted_filename_to_uri_string(const char *filename,
if(!buffer)
goto path_done;
- memcpy(buffer, "file://", RAPTOR_LEN_FILE_CSS);
+ memcpy(buffer, "file://", RAPTOR_LEN_FILE_CSS + 1); /* copy NUL */
from = filename;
to = (char*)(buffer + RAPTOR_LEN_FILE_CSS);
fl = filename_len;