diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-05-06 13:15:52 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-05-06 13:15:52 +0200 |
commit | 7c21b38ca937603741d1ec00a944eeb578cb653f (patch) | |
tree | 741ca45f3d505adcce83035ccdf046b5359f5e54 /drivers | |
parent | ACPICA: Dispatcher: Update thread ID for recursive method calls (diff) | |
parent | device property: Avoid potential dereferences of invalid pointers (diff) | |
download | linux-7c21b38ca937603741d1ec00a944eeb578cb653f.tar.xz linux-7c21b38ca937603741d1ec00a944eeb578cb653f.zip |
Merge branches 'acpica-fixes' and 'device-properties-fixes'
* acpica-fixes:
ACPICA: Dispatcher: Update thread ID for recursive method calls
* device-properties-fixes:
device property: Avoid potential dereferences of invalid pointers
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/property.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/property.c b/drivers/base/property.c index 9b1a65debd49..7f692accdc90 100644 --- a/drivers/base/property.c +++ b/drivers/base/property.c @@ -21,7 +21,7 @@ static inline bool is_pset_node(struct fwnode_handle *fwnode) { - return fwnode && fwnode->type == FWNODE_PDATA; + return !IS_ERR_OR_NULL(fwnode) && fwnode->type == FWNODE_PDATA; } static inline struct property_set *to_pset_node(struct fwnode_handle *fwnode) |