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
Code excerpt:
input = vmalloc(len); ... input[len] = '\0';
From
intel_nuc_led/nuc_led.c
Line 234 in 6a3850e
That should be:
input = vmalloc(len+1); ... input[len] = '\0';
The text was updated successfully, but these errors were encountered:
This seems oddly similar to my thoughts on #15 wrt to the null character being added to the output on read but I dont write enough C to chase it down.
Sorry, something went wrong.
No branches or pull requests
Code excerpt:
From
intel_nuc_led/nuc_led.c
Line 234 in 6a3850e
That should be:
The text was updated successfully, but these errors were encountered: