1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00

Oops - fix silly segfault in new puttygen

[originally from svn r974]
This commit is contained in:
Simon Tatham 2001-03-03 12:05:36 +00:00
parent 28b1fc766c
commit 146b5f5f6e

View File

@ -789,10 +789,13 @@ static int CALLBACK MainDlgProc (HWND hwnd, UINT msg,
EnableWindow(GetDlgItem(hwnd, IDC_GENERATE), 1); EnableWindow(GetDlgItem(hwnd, IDC_GENERATE), 1);
EnableWindow(GetDlgItem(hwnd, IDC_LOAD), 1); EnableWindow(GetDlgItem(hwnd, IDC_LOAD), 1);
EnableWindow(GetDlgItem(hwnd, IDC_SAVE), 1); EnableWindow(GetDlgItem(hwnd, IDC_SAVE), 1);
if (state->ssh2) if (state->ssh2) {
state->ssh2key.data = &state->key;
state->ssh2key.alg = &ssh_rsa;
state->commentptr = &state->ssh2key.comment; state->commentptr = &state->ssh2key.comment;
else } else {
state->commentptr = &state->key.comment; state->commentptr = &state->key.comment;
}
/* /*
* Invent a comment for the key. We'll do this by including * Invent a comment for the key. We'll do this by including
* the date in it. This will be so horrifyingly ugly that * the date in it. This will be so horrifyingly ugly that