Merge pull request #1626 from gebart/pr/cfs-readonly-seek
core/cfs: Disallow seeking past the end of a file unless it is writable
This commit is contained in:
commit
617465e465
|
@ -1055,7 +1055,12 @@ cfs_seek(int fd, cfs_offset_t offset, int whence)
|
|||
}
|
||||
|
||||
if(fdp->file->end < new_offset) {
|
||||
fdp->file->end = new_offset;
|
||||
if(FD_WRITABLE(fd)) {
|
||||
fdp->file->end = new_offset;
|
||||
} else {
|
||||
/* Disallow seeking past the end of the file for read only FDs */
|
||||
return (cfs_offset_t)-1;
|
||||
}
|
||||
}
|
||||
|
||||
return fdp->offset = new_offset;
|
||||
|
|
Loading…
Reference in a new issue