commit | e545ff30a629f9d41a15c409ed9780eaf505b329 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Fri Oct 12 03:03:23 2007 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Fri Oct 12 03:03:23 2007 +0000 |
tree | 0e9d6ff6e65c2003393091b55d0fe2927696c9e9 | |
parent | 088beae1f2b99e4dea44fe3f6630f22f5f49b013 [diff] [blame] |
Fix Coverity 168: Close the file before returning (exiting).
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 @@ 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; } }