repo: Only open regular files
Otherwise we'll try to open device files with predictably bad consequences.
This commit is contained in:
parent
961b1c80db
commit
aa25334286
|
|
@ -193,7 +193,7 @@ ostree_stat_and_checksum_file (int dir_fd, const char *path,
|
|||
goto out;
|
||||
}
|
||||
|
||||
if (!S_ISLNK(stbuf.st_mode))
|
||||
if (S_ISREG(stbuf.st_mode))
|
||||
{
|
||||
fd = ot_util_open_file_read_at (dir_fd, basename, error);
|
||||
if (fd < 0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue