From: Carl Hetherington Date: Fri, 22 Apr 2016 10:35:14 +0000 (+0100) Subject: Fix too-small minimum key file size and improve error message. X-Git-Tag: v2.7.15~12 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=5317f5a6f3415aec5d6e99ca7e6fc89d735bc700 Fix too-small minimum key file size and improve error message. --- diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc index eb3736c6c..af4a04e2e 100644 --- a/src/wx/config_dialog.cc +++ b/src/wx/config_dialog.cc @@ -912,8 +912,11 @@ private: if (d->ShowModal() == wxID_OK) { try { boost::filesystem::path p (wx_to_std (d->GetPath ())); - if (boost::filesystem::file_size (p) > 1024) { - error_dialog (this, wxString::Format (_("Could not read key file (%s)"), std_to_wx (p.string ()))); + if (boost::filesystem::file_size (p) > 8192) { + error_dialog ( + this, + wxString::Format (_("Could not read key file; file is too long (%s)"), std_to_wx (p.string ())) + ); return; }