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
introduced in 37e0a0c
the value of retval is returned not initialized when case 2 in kernel/hypercalls.c line 504
case 2
int hyp_cpuctrl(void) { unsigned long cp; unsigned long retval; deb_printf(DEB_CALL, "BEGIN\n"); cp = (int) _context->regs.regs[0]; switch (cp) { case 0: retval = _get_c0(); break; case 1: retval = _get_c1(); break; case 2: break; } deb_printf(DEB_HYP, "END: 0x%08x\n", retval); return retval; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
introduced in 37e0a0c
the value of retval is returned not initialized when
case 2
in kernel/hypercalls.c line 504
The text was updated successfully, but these errors were encountered: