Skip to content
Snippets Groups Projects
Commit b636d25f authored by Simon McVittie's avatar Simon McVittie
Browse files

process_pt_dynamic: Add missing 'break' to DT_JMPREL case


Without this, we fall through to the case for DT_BIND_NOW, which will
log a misleading debug message before breaking out of the switch.

Thanks, gcc 8!

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 12bebee3
Branches
Tags
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
......@@ -707,6 +707,7 @@ process_pt_dynamic (ElfW(Addr) start,
ret = 1;
break;
}
break;
IGNORE( DT_BIND_NOW )
IGNORE( DT_INIT_ARRAY )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment