summaryrefslogtreecommitdiff
path: root/src/udev/collect
diff options
context:
space:
mode:
Diffstat (limited to 'src/udev/collect')
-rw-r--r--src/udev/collect/collect.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/udev/collect/collect.c b/src/udev/collect/collect.c
index 7850cfa418..6580a091e0 100644
--- a/src/udev/collect/collect.c
+++ b/src/udev/collect/collect.c
@@ -139,12 +139,14 @@ static int checkout(int fd)
restart:
len = bufsize >> 1;
- buf = calloc(1,bufsize + 1);
+ buf = malloc(bufsize + 1);
if (!buf) {
fprintf(stderr, "Out of memory.\n");
return log_oom();
}
memset(buf, ' ', bufsize);
+ buf[bufsize] = '\0';
+
ptr = buf + len;
while ((read(fd, buf + len, len)) > 0) {
while (ptr && *ptr) {