mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
Improve error handling in registry code
[originally from svn r170]
This commit is contained in:
parent
7c9195b8f9
commit
cd5c916e25
11
windlg.c
11
windlg.c
@ -213,14 +213,17 @@ static void load_settings (char *section, int do_host) {
|
||||
|
||||
p = malloc(3*strlen(section)+1);
|
||||
mungestr(section, p);
|
||||
|
||||
if (RegOpenKey(HKEY_CURRENT_USER, puttystr, &subkey1) != ERROR_SUCCESS ||
|
||||
RegOpenKey(subkey1, p, &sesskey) != ERROR_SUCCESS) {
|
||||
|
||||
if (RegOpenKey(HKEY_CURRENT_USER, puttystr, &subkey1) != ERROR_SUCCESS) {
|
||||
sesskey = NULL;
|
||||
} else {
|
||||
if (RegOpenKey(subkey1, p, &sesskey) != ERROR_SUCCESS) {
|
||||
sesskey = NULL;
|
||||
}
|
||||
RegCloseKey(subkey1);
|
||||
}
|
||||
|
||||
free(p);
|
||||
RegCloseKey(subkey1);
|
||||
|
||||
if (do_host) {
|
||||
char prot[10];
|
||||
|
Loading…
Reference in New Issue
Block a user