Skip to content
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

testing/fatutf8:fix Out of bounds writing #2782

Merged
merged 2 commits into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions benchmarks/coremark-pro/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/coremark-pro
1 change: 1 addition & 0 deletions benchmarks/fio/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/fio
1 change: 1 addition & 0 deletions math/gemmlowp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/gemmlowp
1 change: 1 addition & 0 deletions math/kissfft/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/kissfft
1 change: 1 addition & 0 deletions math/ruy/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/ruy
1 change: 1 addition & 0 deletions netutils/libwebsockets/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/libwebsockets
1 change: 1 addition & 0 deletions system/flatbuffers/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/flatbuffers
2 changes: 1 addition & 1 deletion testing/fatutf8/fatutf8_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ int main(int argc, FAR char *argv[])
{
printf("open successful\n");

len = read(fd, buf, sizeof(buf));
len = read(fd, buf, sizeof(buf) - 1);

if (len >= 0)
{
Expand Down
1 change: 1 addition & 0 deletions videoutils/openh264/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
openh264
Loading