Differences From Artifact [4f8feafb66]:
- File windows/window.c — part of check-in [be198c9138] at 2007-01-26 08:06:08 on branch trunk — Kai Jourdan spotted a rather embarrassing double-free, and Minefield confirms that it's a real problem. (user: simon size: 143167)
To Artifact [e8851d5c36]:
- File windows/window.c — part of check-in [e32793db99] at 2007-02-10 11:02:41 on branch trunk — Avoid launching a session from the Default Settings, even if they do represent a launchable session, unless the user can be construed to have really meant it. This means: - starting up PuTTY when the Default Settings are launchable still brings up the config box, and you have to hit Open to actually launch that session - double-clicking on Default Settings from the config box will load them but not launch them. On the other hand: - explicitly loading the Default Settings on the command line using `-load' _does_ still launch them. (user: simon size: 143193)
| ︙ | ︙ | |||
535 536 537 538 539 540 541 |
cmdline_error("unknown option \"%s\"", p);
}
}
}
cmdline_run_saved(&cfg);
| > | | 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 |
cmdline_error("unknown option \"%s\"", p);
}
}
}
cmdline_run_saved(&cfg);
if ((!loaded_session || !cfg_launchable(&cfg)) &&
!do_config()) {
cleanup_exit(0);
}
/*
* Trim leading whitespace off the hostname if it's there.
*/
{
|
| ︙ | ︙ |