You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is actually much deeper. The code assumes that there is a specific order of sections, which is not necessarily true.
The code must be substantially refactored to account for arbitrary order of sections. It's not just checking for 0. The same issue exists above for board and product areas.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Dear Sir,
There is a problem in ipmi_fru.c.
Line 5081~Line5084
if ((f_type == 'c' ) || (f_type == 'b' ) || (f_type == 'p' )) {
printf("Change multi offset from %d to %d\n", header.offset.multi, header.offset.multi + change_size_by_8);
header.offset.multi += change_size_by_8;
}
if header.offset.multi = 0 and chagne_size_by_8 = -1, header.offset.multi will be 0xff.
Check 0, no change?
Thanks.
The text was updated successfully, but these errors were encountered: