* [PATCH v2] ni_routing: Check when the file could not be opened
@ 2024-09-06 20:30 Ruffalo Lavoisier
0 siblings, 0 replies; 4+ messages in thread
From: Ruffalo Lavoisier @ 2024-09-06 20:30 UTC (permalink / raw)
To: Ian Abbott, H Hartley Sweeten
Cc: Greg Kroah-Hartman, Ruffalo Lavoisier, linux-kernel
- After fopen check NULL before using the file pointer use
Signed-off-by: Ruffalo Lavoisier <RuffaloLavoisier@gmail.com>
---
I'm sorry. I think it's dirty because I'm not used to the patch. I'm going to write it all over again and send it to you.
This is just a defense code just in case.
drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c b/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
index d55521b5bdcb..892a66b2cea6 100644
--- a/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
+++ b/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
@@ -140,6 +140,11 @@ int main(void)
{
FILE *fp = fopen("ni_values.py", "w");
+ if (fp == NULL) {
+ fprintf(stderr, "Could not open file!");
+ return -1;
+ }
+
/* write route register values */
fprintf(fp, "ni_route_values = {\n");
for (int i = 0; ni_all_route_values[i]; ++i)
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH v2] ni_routing: Check when the file could not be opened
@ 2024-09-06 12:12 Ruffalo Lavoisier
0 siblings, 0 replies; 4+ messages in thread
From: Ruffalo Lavoisier @ 2024-09-06 12:12 UTC (permalink / raw)
To: Ian Abbott, H Hartley Sweeten
Cc: Greg Kroah-Hartman, Ruffalo Lavoisier, linux-kernel
Signed-off-by: Ruffalo Lavoisier <RuffaloLavoisier@gmail.com>
---
ah this is It's just a defense code just in case.
drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c b/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
index d55521b5bdcb..892a66b2cea6 100644
--- a/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
+++ b/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
@@ -140,6 +140,11 @@ int main(void)
{
FILE *fp = fopen("ni_values.py", "w");
+ if (fp == NULL) {
+ fprintf(stderr, "Could not open file!");
+ return -1;
+ }
+
/* write route register values */
fprintf(fp, "ni_route_values = {\n");
for (int i = 0; ni_all_route_values[i]; ++i)
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH v2] ni_routing: Check when the file could not be opened
@ 2024-09-06 12:10 Ruffalo Lavoisier
2024-09-06 12:15 ` Greg Kroah-Hartman
0 siblings, 1 reply; 4+ messages in thread
From: Ruffalo Lavoisier @ 2024-09-06 12:10 UTC (permalink / raw)
To: Ian Abbott, H Hartley Sweeten
Cc: Greg Kroah-Hartman, Ruffalo Lavoisier, linux-kernel
Signed-off-by: Ruffalo Lavoisier <RuffaloLavoisier@gmail.com>
---
drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c b/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
index d55521b5bdcb..892a66b2cea6 100644
--- a/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
+++ b/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
@@ -140,6 +140,11 @@ int main(void)
{
FILE *fp = fopen("ni_values.py", "w");
+ if (fp == NULL) {
+ fprintf(stderr, "Could not open file!");
+ return -1;
+ }
+
/* write route register values */
fprintf(fp, "ni_route_values = {\n");
for (int i = 0; ni_all_route_values[i]; ++i)
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v2] ni_routing: Check when the file could not be opened
2024-09-06 12:10 Ruffalo Lavoisier
@ 2024-09-06 12:15 ` Greg Kroah-Hartman
0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2024-09-06 12:15 UTC (permalink / raw)
To: Ruffalo Lavoisier; +Cc: Ian Abbott, H Hartley Sweeten, linux-kernel
On Fri, Sep 06, 2024 at 09:10:08PM +0900, Ruffalo Lavoisier wrote:
> Signed-off-by: Ruffalo Lavoisier <RuffaloLavoisier@gmail.com>
> ---
> drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c b/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
> index d55521b5bdcb..892a66b2cea6 100644
> --- a/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
> +++ b/drivers/comedi/drivers/ni_routing/tools/convert_c_to_py.c
> @@ -140,6 +140,11 @@ int main(void)
> {
> FILE *fp = fopen("ni_values.py", "w");
>
> + if (fp == NULL) {
> + fprintf(stderr, "Could not open file!");
> + return -1;
> + }
> +
> /* write route register values */
> fprintf(fp, "ni_route_values = {\n");
> for (int i = 0; ni_all_route_values[i]; ++i)
> --
> 2.43.0
>
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- You did not specify a description of why the patch is needed, or
possibly, any description at all, in the email body. Please read the
section entitled "The canonical patch format" in the kernel file,
Documentation/process/submitting-patches.rst for what is needed in
order to properly describe the change.
- This looks like a new version of a previously submitted patch, but you
did not list below the --- line any changes from the previous version.
Please read the section entitled "The canonical patch format" in the
kernel file, Documentation/process/submitting-patches.rst for what
needs to be done here to properly describe this.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-09-06 20:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-06 20:30 [PATCH v2] ni_routing: Check when the file could not be opened Ruffalo Lavoisier
-- strict thread matches above, loose matches on Subject: below --
2024-09-06 12:12 Ruffalo Lavoisier
2024-09-06 12:10 Ruffalo Lavoisier
2024-09-06 12:15 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox