We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
initialize_fdt allocates a buffer to read the dtb file, like so:
initialize_fdt
p = malloc(st.st_size);
But, if p == NULL, kexec does not exit (it does print an error); instead, it moves on with reading of the file.
p == NULL
The text was updated successfully, but these errors were encountered:
Likewise within dtc_resize for the failure to allocated fdt.
dtc_resize
fdt
Sorry, something went wrong.
No branches or pull requests
initialize_fdt
allocates a buffer to read the dtb file, like so:p = malloc(st.st_size);
But, if
p == NULL
, kexec does not exit (it does print an error); instead, it moves on with reading of the file.The text was updated successfully, but these errors were encountered: