diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-13 20:13:37 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-13 20:13:37 +0300 |
commit | 79bbf32a154d1617864f4f0e91d76e9e6b98e983 (patch) | |
tree | 1d5f8b79c9aa5a80fcafbec2acf5ea64c8b054e7 /src/mir_app | |
parent | beef95a7ef2670119b88eb8c9434863a004fe3af (diff) |
missing return on error, there's nothing to do here anymore
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/MDatabaseCommonCrypt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mir_app/src/MDatabaseCommonCrypt.cpp b/src/mir_app/src/MDatabaseCommonCrypt.cpp index e235bf9e4a..2ec94fe369 100644 --- a/src/mir_app/src/MDatabaseCommonCrypt.cpp +++ b/src/mir_app/src/MDatabaseCommonCrypt.cpp @@ -191,6 +191,7 @@ public: SendDlgItemMessage(m_hwnd, IDC_HEADERBAR, WM_NCPAINT, 0, 0);
edtPass1.SetTextA("");
edtPass2.SetTextA("");
+ return;
}
wchar_t buf[100];
|