Skip to content

Commit 2213579

Browse files
committed
Merge remote-tracking branch 'origin/v100-bugfix' into v10-minor
2 parents d43af4b + f59d1f9 commit 2213579

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,7 @@ Fixed bugs
489489
- corrected the upgrade of full orbitopes to packing/partitioning orbotopes in case the orbitopal symmetries form a proper subgroup of a component's symmetry group
490490
- aggregate integer variable to not in clique variable in cliquePresolve() of cons_xor.c to avoid infeasible solutions
491491
- fixed memory leak in dynamic partition search primal heuristic
492+
- fixed issue with file existence check in XML parser when SCIP was build with ZLIB support on Windows
492493

493494
Miscellaneous
494495
-------------

src/xml/xmlparse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646

4747
#include <sys/types.h>
4848
#ifdef SCIP_WITH_ZLIB
49-
#if defined(_WIN32) || defined(_WIN64)
50-
#define R_OK _A_RDONLY
49+
#if defined(_WIN32)
50+
#define R_OK 0
5151
#define access _access
5252
#include <io.h>
5353
#else

0 commit comments

Comments
 (0)