X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system-linux.c;h=c6d81e60459f08165cd05ebfdec35d0250be68b3;hp=f5c900db2185ff5b6e17cc5228bc3f04208f92aa;hb=b19c14ca2ea5594d37bd3492ad147047eed4703f;hpb=eec42f59364590f2210849a3a48ceb3ee8cbbb1c;ds=sidebyside diff --git a/system-linux.c b/system-linux.c index f5c900d..c6d81e6 100644 --- a/system-linux.c +++ b/system-linux.c @@ -918,17 +918,21 @@ static int system_addr(struct device *dev, struct device_addr *addr, int cmd) struct ifa_cacheinfo cinfo = {0xffffffffU, 0xffffffffU, 0, 0}; if (addr->preferred_until) { - int preferred = addr->preferred_until - now; + int64_t preferred = addr->preferred_until - now; if (preferred < 0) preferred = 0; + else if (preferred > UINT32_MAX) + preferred = UINT32_MAX; cinfo.ifa_prefered = preferred; } if (addr->valid_until) { - int valid = addr->valid_until - now; + int64_t valid = addr->valid_until - now; if (valid <= 0) return -1; + else if (valid > UINT32_MAX) + valid = UINT32_MAX; cinfo.ifa_valid = valid; }