Skip to content
Merged
Show file tree
Hide file tree
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 .github/workflows/multi-os-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
submodules: 'true'

- name: Compile
run: CFLAGS="-I$(brew --prefix openssl@1.1)/include/" LDFLAGS="-L$(brew --prefix openssl@1.1)/lib/" make
run: CFLAGS="-I$(brew --prefix openssl@3)/include/" LDFLAGS="-L$(brew --prefix openssl@3)/lib/" make

build-win64:

Expand Down
2 changes: 1 addition & 1 deletion lib/libpe/include/libpe/pe.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ extern "C" {
static const uint32_t IMAGE_ORDINAL_FLAG32 = 0x80000000;
static const uint64_t IMAGE_ORDINAL_FLAG64 = 0x8000000000000000;
#define IMAGE_ORDINAL_MASK(ctx) \
((ctx->pe.optional_hdr.type == MAGIC_PE32) ? \
((ctx->pe.optional_hdr.type == MAGIC_PE32_0 || ctx->pe.optional_hdr.type == MAGIC_PE32) ? \
IMAGE_ORDINAL_FLAG32 : IMAGE_ORDINAL_FLAG64)

#define SIGNATURE_PE 0x00004550 // PE\0\0 in little-endian
Expand Down
Loading