Skip to content

Update: Fix the Compile Error in IccUtil.cpp, Fix a return value in IccTagXml.cpp #66

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

Merged
merged 2 commits into from
May 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update IccTagXml.cpp Fix return value
Change the unconditional return statement at the end of the CIccTagXmlProfileSequenceId::ParseXml function from false to true.
  • Loading branch information
xsscx authored May 14, 2024
commit 85ce74ef19fb0751c7e188b06daed22fe74c332c
2 changes: 1 addition & 1 deletion IccXML/IccLibXML/IccTagXml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4199,7 +4199,7 @@ bool CIccTagXmlProfileSequenceId::ParseXml(xmlNode *pNode, std::string &parseStr
m_list->push_back(desc);
}

return false;
return true;
}


Expand Down