tftpfs: make sure path is null terminated
This commit is contained in:
parent
e4d29ea9a7
commit
cc001c31a7
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ tfileget(uchar *addr, char *path)
|
||||||
f = emalloc9p(sizeof *f);
|
f = emalloc9p(sizeof *f);
|
||||||
memset(f, 0, sizeof(*f));
|
memset(f, 0, sizeof(*f));
|
||||||
ipmove(f->addr, addr);
|
ipmove(f->addr, addr);
|
||||||
strncpy(f->path, path, sizeof(f->path));
|
strncpy(f->path, path, Maxpath-1);
|
||||||
f->ref = 1;
|
f->ref = 1;
|
||||||
f->id = id++;
|
f->id = id++;
|
||||||
f->next = files;
|
f->next = files;
|
||||||
|
|
Loading…
Reference in a new issue