mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
SF bug #887946, segfault if redirecting directory
Also provide a warning if a directory is passed on the command line. Add minimal command line test. Will backport.
This commit is contained in:
parent
d157b1d237
commit
11bd119226
4 changed files with 70 additions and 0 deletions
|
@ -359,6 +359,14 @@ Py_Main(int argc, char **argv)
|
|||
}
|
||||
}
|
||||
}
|
||||
{
|
||||
/* XXX: does this work on Win/Win64? (see posix_fstat) */
|
||||
struct stat sb;
|
||||
if (fstat(fileno(fp), &sb) == 0 &&
|
||||
S_ISDIR(sb.st_mode)) {
|
||||
fprintf(stderr, "%s: warning '%s' is a directory\n", argv[0], filename);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue