Samba 4.20 -> 4.22

This commit is contained in:
2025-09-11 05:10:10 +02:00
parent 52d3f86b37
commit 7acb408e7d
53 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,14 @@
--- source3/lib/util.c.orig 2019-05-07 08:38:21 UTC
+++ source3/lib/util.c
@@ -1916,7 +1916,10 @@ bool any_nt_status_not_ok(NTSTATUS err1,
int timeval_to_msec(struct timeval t)
{
- return t.tv_sec * 1000 + (t.tv_usec+999) / 1000;
+ unsigned long result;
+
+ result = t.tv_sec * 1000 + (t.tv_usec+999) / 1000;
+ return result > INT_MAX ? INT_MAX : result;
}
/*******************************************************************