1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-11 05:17:37 +03:00

xmllint: Fix unsigned integer overflow

Short-lived regression.
This commit is contained in:
Nick Wellnhofer 2024-07-01 15:31:58 +02:00
parent 64b0c64ed6
commit 37f7237050

View File

@ -338,8 +338,8 @@ myStrdupFunc(const char *str)
************************************************************************/
typedef struct {
unsigned sec;
unsigned usec;
int sec;
int usec;
} xmlTime;
static xmlTime begin, end;