From 9f78c3fc4f725a3406cb2bf433dabfe9d790e56e Mon Sep 17 00:00:00 2001 From: Slava Zanko Date: Fri, 23 Mar 2012 12:49:46 +0300 Subject: [PATCH] Ticket #2663: Segmentation fault while background copying Action to reproduce bug: Start copy/move file/files (around 100mb+) in background Signed-off-by: Slava Zanko --- src/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.c b/src/main.c index 4dccde65f..03dd495c5 100644 --- a/src/main.c +++ b/src/main.c @@ -315,7 +315,7 @@ do_load_prompt (void) return ret; /* Don't actually change the prompt if it's invisible */ - if (((Dlg_head *) top_dlg->data == midnight_dlg) && command_prompt) + if (top_dlg != NULL && ((Dlg_head *) top_dlg->data == midnight_dlg) && command_prompt) { setup_cmdline (); @@ -408,11 +408,11 @@ main (int argc, char *argv[]) if (!mc_args_parse (&argc, &argv, "mc", &error)) { - startup_exit_falure: + startup_exit_falure: fprintf (stderr, _("Failed to run:\n%s\n"), error->message); g_error_free (error); g_free (shell); - startup_exit_ok: + startup_exit_ok: str_uninit_strings (); return exit_code; } @@ -546,7 +546,7 @@ main (int argc, char *argv[]) if (mc_global.midnight_shutdown) exit_code = EXIT_SUCCESS; else - exit_code = do_nc () ? EXIT_SUCCESS : EXIT_FAILURE; + exit_code = do_nc ()? EXIT_SUCCESS : EXIT_FAILURE; /* Save the tree store */ (void) tree_store_save (); -- 2.11.4.GIT