diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-10-12 03:03:23 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-10-12 03:03:23 (GMT) |
commit | e545ff30a629f9d41a15c409ed9780eaf505b329 (patch) | |
tree | 0e9d6ff6e65c2003393091b55d0fe2927696c9e9 /Modules/main.c | |
parent | 088beae1f2b99e4dea44fe3f6630f22f5f49b013 (diff) | |
download | cpython-e545ff30a629f9d41a15c409ed9780eaf505b329.zip cpython-e545ff30a629f9d41a15c409ed9780eaf505b329.tar.gz cpython-e545ff30a629f9d41a15c409ed9780eaf505b329.tar.bz2 |
Fix Coverity 168: Close the file before returning (exiting).
Diffstat (limited to 'Modules/main.c')
-rw-r--r-- | Modules/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/main.c b/Modules/main.c index 59b0e9f..417b3f2 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -416,6 +416,7 @@ Py_Main(int argc, char **argv) if (fstat(fileno(fp), &sb) == 0 && S_ISDIR(sb.st_mode)) { fprintf(stderr, "%s: '%s' is a directory, cannot continue\n", argv[0], filename); + fclose(fp); return 1; } } |