Message ID | 20221122133600.49897-3-andriy.shevchenko@linux.intel.com |
---|---|
State | Accepted |
Commit | 4d57b4f215e8ba86c36540eaccd3b17bc5ee39c0 |
Headers | show |
Series | [v4,1/4] device property: Get rid of __PROPERTY_ENTRY_ARRAY_EL*SIZE*() | expand |
diff --git a/drivers/base/property.c b/drivers/base/property.c index f7b5aa8fcf28..ed74083c179d 100644 --- a/drivers/base/property.c +++ b/drivers/base/property.c @@ -482,12 +482,13 @@ int fwnode_property_match_string(const struct fwnode_handle *fwnode, ret = fwnode_property_read_string_array(fwnode, propname, values, nval); if (ret < 0) - goto out; + goto out_free; ret = match_string(values, nval, string); if (ret < 0) ret = -ENODATA; -out: + +out_free: kfree(values); return ret; }
In the fwnode_property_match_string() the goto label out has an additional task. Rename the label to be more precise on what is going to happen if goto it. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- v4: new patch drivers/base/property.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)