diff --git a/[refs] b/[refs] index ab8b91acd0a6..22eb95dda7ad 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 0d5cadb87e0fa764db7fa0b78d8a6f173cb475a1 +refs/heads/master: e86d35c38e37eb64cb5d11933c42a2a72f16ce23 diff --git a/trunk/fs/coredump.c b/trunk/fs/coredump.c index a9abe313e8d5..dafafbafa731 100644 --- a/trunk/fs/coredump.c +++ b/trunk/fs/coredump.c @@ -654,10 +654,11 @@ void do_coredump(siginfo_t *siginfo) goto close_fail; if (displaced) put_files_struct(displaced); - file_start_write(cprm.file); - core_dumped = !dump_interrupted() && binfmt->core_dump(&cprm); - file_end_write(cprm.file); - + if (!dump_interrupted()) { + file_start_write(cprm.file); + core_dumped = binfmt->core_dump(&cprm); + file_end_write(cprm.file); + } if (ispipe && core_pipe_limit) wait_for_dump_helpers(cprm.file); close_fail: