forked from Mirrors/freeswitch
[Core] Coverity: 1500270 Use of 32-bit time_t
This commit is contained in:
parent
792eee44d0
commit
7d6082c349
|
@ -11836,7 +11836,7 @@ SWITCH_DECLARE(void) switch_core_media_set_udptl_image_sdp(switch_core_session_t
|
|||
}
|
||||
|
||||
if (!smh->owner_id) {
|
||||
smh->owner_id = (uint32_t) switch_epoch_time_now(NULL) - port;
|
||||
smh->owner_id = (uint32_t)(intptr_t)switch_epoch_time_now(NULL) - port;
|
||||
}
|
||||
|
||||
if (!smh->session_id) {
|
||||
|
|
Loading…
Reference in New Issue