mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
LibELF: Ignore unknown dynamic tags instead of asserting
Some programs (like wine) add custom dynamic tags to their binaries that are used internally by them, so we can just ignore them.
This commit is contained in:
parent
7b24fc6fb8
commit
6c8f1e62db
Notes:
sideshowbarker
2024-07-17 22:23:44 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/6c8f1e62db1 Pull-request: https://github.com/SerenityOS/serenity/pull/11318 Reviewed-by: https://github.com/bgianfo ✅
1 changed files with 0 additions and 1 deletions
|
@ -167,7 +167,6 @@ void DynamicObject::parse()
|
|||
break;
|
||||
default:
|
||||
dbgln("DynamicObject: DYNAMIC tag handling not implemented for DT_{} ({})", name_for_dtag(entry.tag()), entry.tag());
|
||||
VERIFY_NOT_REACHED(); // FIXME: Maybe just break out here and return false?
|
||||
break;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue