Skip to content

Commit

Permalink
Fix build for Windows XP.
Browse files Browse the repository at this point in the history
  • Loading branch information
enzo1982 committed Sep 29, 2024
1 parent 0b1c2b7 commit f2e3eb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/libxml2/dict.c
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ xmlInitRandom(void) {
xmlInitMutex(&xmlRngMutex);

{
#ifdef _WIN32
#if defined(_WIN32) && _WIN32_WINNT >= 0x0600
NTSTATUS status;

status = BCryptGenRandom(NULL, (unsigned char *) globalRngState,
Expand Down

0 comments on commit f2e3eb5

Please sign in to comment.