Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lsbom: BOM file from iOS OTA Update not readable #21

Closed
HellGL opened this issue Nov 1, 2017 · 2 comments
Closed

lsbom: BOM file from iOS OTA Update not readable #21

HellGL opened this issue Nov 1, 2017 · 2 comments

Comments

@HellGL
Copy link

HellGL commented Nov 1, 2017

Hi,
at the weekend I tried to list the contents of the pre.bom and post.bom of a iOS OTA update file. lsbom just says nothing. I tracked the problem down to line 271:
if (name == "Paths") {
For whatever reason this statement is always false, even if name is indeed "Paths". If I rewrite the statement to
if (strstr(name.c_str(),"Paths") == 0) {
it works and shows the contents of the BOM file. I know this is not a fix, but at least it works for my particular problem.

Regards,
HellG

@scollinson
Copy link

Have had the same problem and this fix works for me.

hogliux pushed a commit that referenced this issue Mar 7, 2023
@hogliux
Copy link
Owner

hogliux commented Mar 7, 2023

Fixed with commit 704739c

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants