mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-11 19:10:18 +01:00
Remove 6 hour timeout restriction.
* dbus/dbus-pending-call.c (_dbus_pending_call_new_unlocked): Now that
the timeout math won't overflow, don't clamp to six hours.
Signed-off-by: Scott James Remnant <scott@ubuntu.com>
(cherry picked from commit 7398ad7374)
This commit is contained in:
parent
fc7b4fc9ec
commit
5de455c0bb
1 changed files with 0 additions and 7 deletions
|
|
@ -100,13 +100,6 @@ _dbus_pending_call_new_unlocked (DBusConnection *connection,
|
|||
if (timeout_milliseconds == -1)
|
||||
timeout_milliseconds = _DBUS_DEFAULT_TIMEOUT_VALUE;
|
||||
|
||||
/* clamp the timeout otherwise math in
|
||||
* _dbus_connection_block_for_reply would get all overflow-prone
|
||||
*/
|
||||
if ((timeout_milliseconds > _DBUS_ONE_HOUR_IN_MILLISECONDS * 6) &&
|
||||
(timeout_milliseconds < _DBUS_INT_MAX))
|
||||
timeout_milliseconds = _DBUS_ONE_HOUR_IN_MILLISECONDS * 6;
|
||||
|
||||
if (!dbus_pending_call_allocate_data_slot (¬ify_user_data_slot))
|
||||
return NULL;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue