fuzz-tests: order FUZZ_COMMON_OBJS lexicographic
What changed, and why it matters
This commit simply reorders a list of file names in a Makefile so they are in strict alphabetical order. It does not change any code, fix any bug, or alter how the software behaves. There is no security relevance.
No action required; this is a non-functional cleanup change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change is a pure cosmetic reordering of the FUZZ_COMMON_OBJS variable in tests/fuzz/Makefile. No object files were added or removed; only their order in the list was changed to be strictly lexicographic. This has no functional or security impact on the build or the fuzzing targets.
Changed components
tests/fuzz/MakefileInspect captured patch +8 / −8
diff --git a/tests/fuzz/Makefile b/tests/fuzz/Makefile
index 6b36b1e9..3caf76c3 100644
--- a/tests/fuzz/Makefile
+++ b/tests/fuzz/Makefile
@@ -14,24 +14,24 @@ FUZZ_TARGETS_OBJS := $(FUZZ_TARGETS_SRC:.c=.o)
FUZZ_TARGETS_BIN := $(FUZZ_TARGETS_SRC:.c=)
FUZZ_COMMON_OBJS := \
- common/amount.o \
common/addr.o \
+ common/amount.o \
common/autodata.o \
common/base32.o \
common/base64.o \
common/bech32.o \
common/bech32_util.o \
- common/bip32.o \
common/bigsize.o \
+ common/bip32.o \
common/blockheight_states.o \
common/bolt11.o \
common/bolt12_merkle.o \
common/channel_config.o \
+ common/channel_id.o \
+ common/channel_type.o \
common/close_tx.o \
common/configdir.o \
common/configvar.o \
- common/channel_id.o \
- common/channel_type.o \
common/cryptomsg.o \
common/daemon.o \
common/daemon_conn.o \
@@ -42,16 +42,15 @@ FUZZ_COMMON_OBJS := \
common/hash_u5.o \
common/hsm_encryption.o \
common/htlc_state.o \
- common/permute_tx.o \
common/initial_channel.o \
common/initial_commit_tx.o \
common/key_derive.o \
common/keyset.o \
- common/msg_queue.o \
common/memleak.o \
+ common/msg_queue.o \
common/node_id.o \
+ common/permute_tx.o \
common/psbt_keypath.o \
- common/wireaddr.o \
common/sciddir_or_pubkey.o \
common/setup.o \
common/status.o \
@@ -59,12 +58,13 @@ FUZZ_COMMON_OBJS := \
common/status_wiregen.o \
common/utils.o \
common/version.o \
+ common/wireaddr.o \
wire/bolt12_wiregen.o \
+ wire/channel_type_wiregen.o \
wire/fromwire.o \
wire/onion_wiregen.o \
wire/peer_wire.o \
wire/peer_wiregen.o \
- wire/channel_type_wiregen.o \
wire/tlvstream.o \
wire/towire.o \
wire/wire_io.o \
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.