Bug 176441
Summary: | fb_get_options creates leaks sometimes | ||
---|---|---|---|
Product: | Drivers | Reporter: | Mathieu Malaterre (mathieu.malaterre) |
Component: | Console/Framebuffers | Assignee: | other_other |
Status: | NEW --- | ||
Severity: | normal | ||
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 3.7.5 | Subsystem: | |
Regression: | No | Bisected commit-id: |
Description
Mathieu Malaterre
2016-10-05 18:50:18 UTC
So the function `fb_get_options` is implemented this way: ``` int fb_get_options(const char *name, char **option) { [...] /* No match, pass global option */ if (!options && option && fb_mode_option) options = kstrdup(fb_mode_option, GFP_KERNEL); ``` How does the site caller knows when to `kfree` the `kstrdup` string ? |