mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-03 22:56:49 +00:00
fix(ImageProvider): avoid bad signed comparison
This commit is contained in:
parent
f72f40d080
commit
6715a13e24
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ using namespace std;
|
|||
|
||||
namespace {
|
||||
// Max image size in bytes. (100Kb)
|
||||
constexpr size_t cMaxImageSize = 102400;
|
||||
constexpr qint64 cMaxImageSize = 102400;
|
||||
}
|
||||
|
||||
static void removeAttribute (QXmlStreamAttributes &readerAttributes, const QString &name) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue