Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Modules/_winapi.c
Original file line numberDiff line numberDiff line change
Expand Up@@ -609,7 +609,7 @@ _winapi_CreateJunction_impl(PyObject *module, LPCWSTR src_path,
/* overallocate by a few array elements */
LUID_AND_ATTRIBUTES privs[4];
} tp, previousTp;
int previousTpSize = 0;
DWORD previousTpSize = 0;
Copy link
MemberAuthor

@chris-eiblchris-eiblMar 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix warning : incompatible pointer types passing 'int *' to parameter of type 'PDWORD'
(aka 'unsigned long *') [-Wincompatible-pointer-types] in ..\Modules_winapi.c(648,50):

if (!AdjustTokenPrivileges(token, FALSE, &tp.base, sizeof(previousTp),
&previousTp.base, &previousTpSize)){


/* Reparse data buffer */
const USHORT prefix_len = 4;
Expand Down
Loading