diff mbox series

[v2,052/101] fbdev/ocfb: Duplicate video-mode option string

Message ID 20230309160201.5163-53-tzimmermann@suse.de (mailing list archive)
State Awaiting Upstream
Headers show
Series fbdev: Fix memory leak in option parsing | expand

Commit Message

Thomas Zimmermann March 9, 2023, 4:01 p.m. UTC
Assume that the driver does not own the option string or its substrings
and hence duplicate the option string for the video mode. Allocate the
copy's memory with kstrdup() and free it in the module's exit function.

Done in preparation of switching the driver to struct option_iter and
constifying the option string.

v2:
	* replace static memory with kstrdup()/kfree() (Geert)

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
 drivers/video/fbdev/ocfb.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/video/fbdev/ocfb.c b/drivers/video/fbdev/ocfb.c
index da7e1457e58f..9786c3641448 100644
--- a/drivers/video/fbdev/ocfb.c
+++ b/drivers/video/fbdev/ocfb.c
@@ -47,6 +47,7 @@ 
 
 #define OCFB_NAME	"OC VGA/LCD"
 
+static char *mode_option_buf;
 static char *mode_option;
 
 static const struct fb_videomode default_mode = {
@@ -77,7 +78,10 @@  static int __init ocfb_setup(char *options)
 	while ((curr_opt = strsep(&options, ",")) != NULL) {
 		if (!*curr_opt)
 			continue;
-		mode_option = curr_opt;
+
+		kfree(mode_option_buf);
+		mode_option_buf = kstrdup(curr_opt, GFP_KERNEL); // ignore errors
+		mode_option = mode_option_buf;
 	}
 
 	return 0;
@@ -420,6 +424,7 @@  static int __init ocfb_init(void)
 static void __exit ocfb_exit(void)
 {
 	platform_driver_unregister(&ocfb_driver);
+	kfree(mode_option_buf);
 }
 
 module_init(ocfb_init);