Fix QMutex::tryLock timeout regression (integer overflow)
authorMarkus Rathgeb <maggu2810@googlemail.com>
Mon, 16 Apr 2012 20:31:51 +0000 (22:31 +0200)
committerQt by Nokia <qt-info@nokia.com>
Tue, 24 Apr 2012 10:48:38 +0000 (12:48 +0200)
commite998f971f6b7d05748b9478909c068605507d8f6
tree55028dc5c7eb42c04f0321fa1fabf521ca718f4d
parent8643e1992f6c62983345f89d793742b3449a69ea
Fix QMutex::tryLock timeout regression (integer overflow)

The timeout given in milliseconds should be converted to a timespec
struct.
To separate the seconds and nanoseconds the milliseconds are first
multiplied to represent the whole value in an int64 variable.
The calculation is done on integers, so we get an overflow if the
milliseconds are bigger then 2148.
If we cast the given value to an int64 we can avoid this problem.

Fix the used cast.

Task-number: QTBUG-24795
Change-Id: I864ae227cf7dda16a6f30aa4db74acc49e20f6eb
Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
src/corelib/thread/qmutex_linux.cpp