Skip to content

Commit

Permalink
patch 9.0.1699: compile warning for xdiff/xutils on MS-Windows
Browse files Browse the repository at this point in the history
Problem: compile warning for xdiff/xutils on MS-Windows
Solution: add explicit type cast from size_t to long

closes: #12531

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Mike Williams <mikew@globalgraphics.com>
  • Loading branch information
Mike Williams authored and chrisbra committed Aug 12, 2023
1 parent 7fe1089 commit 6c313bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1699,
/**/
1698,
/**/
Expand Down
2 changes: 1 addition & 1 deletion src/xdiff/xutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ void* xdl_alloc_grow_helper(void *p, long nr, long *alloc, size_t size)
if (SIZE_MAX / size >= n)
tmp = xdl_realloc(p, n * size);
if (tmp) {
*alloc = n;
*alloc = (long)n;
} else {
xdl_free(p);
*alloc = 0;
Expand Down

0 comments on commit 6c313bb

Please sign in to comment.