Skip to content

Commit 0ba169a

Browse files
alexcrichtondscho
authored andcommitted
Fix a use of uninitialized bytes in pecoff.c
This updates the local declaration of `str_size` to always be 4 bytes instead of platform-dependent as its initialization later on only fills in 4 bytes instead of all the bytes of `size_t`. Originally reported as rust-lang/rust#28447 this was fixed in rust-lang/rust#30908
1 parent 07eaec4 commit 0ba169a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pecoff.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ coff_add (struct backtrace_state *state, int descriptor,
607607
const b_coff_section_header *sects;
608608
struct backtrace_view str_view;
609609
int str_view_valid;
610-
size_t str_size;
610+
uint32_t str_size;
611611
off_t str_off;
612612
struct backtrace_view syms_view = {0};
613613
off_t syms_off;

0 commit comments

Comments
 (0)