Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2017-03-02 23:56:54 +0300
committerJanek Bevendorff <janek@jbev.net>2017-03-02 23:56:54 +0300
commit76dcfb5ed0c874f6a835ef0347ddf6098b149e9b (patch)
tree2351c33d54c41f0f4a4637fcc3419573ce76cb8c /src/http/qhttp/private/qhttpclient_private.hpp
parentb9279f73fa58d75e1ec88f734f3c77c0f015a348 (diff)
parent8a69421dc90103f71d1265b413d6e1e2a7034780 (diff)
Release 2.1.32.1.3
- Fix possible overflow in zxcvbn library [#363] - Revert HiDPI setting to avoid problems on laptop screens [#332] - Set file meta properties in Windows executable [#330] - Suppress error message when auto-reloading a locked database [#345] - Improve usability of question dialog when database is already locked by a different instance [#346] - Fix compiler warnings in QHttp library [#351] - Use unified toolbar on Mac OS X [#361] - Fix an issue on X11 where the main window would be raised instead of closed on Alt+F4 [#362]
Diffstat (limited to 'src/http/qhttp/private/qhttpclient_private.hpp')
-rw-r--r--src/http/qhttp/private/qhttpclient_private.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/qhttp/private/qhttpclient_private.hpp b/src/http/qhttp/private/qhttpclient_private.hpp
index 3206da5f3..9c6cd0989 100644
--- a/src/http/qhttp/private/qhttpclient_private.hpp
+++ b/src/http/qhttp/private/qhttpclient_private.hpp
@@ -112,7 +112,7 @@ protected:
void onReadyRead() {
while ( isocket.bytesAvailable() > 0 ) {
char buffer[4097] = {0};
- size_t readLength = (size_t) isocket.readRaw(buffer, 4096);
+ size_t readLength = static_cast<size_t>(isocket.readRaw(buffer, 4096));
parse(buffer, readLength);
}