diff options
| author | Bhaktipriya Shridhar <[email protected]> | 2016-03-22 20:27:39 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2016-03-28 07:30:36 -0700 |
| commit | a703f4726583318b24f76bb6bc61d46a5319f248 (patch) | |
| tree | d9b85caf733c27554bfe0f745d192dd4b7abe3ad /tools/perf/scripts/python | |
| parent | 12f037ece36267c7e7c6e0e65bc1abdd4019fb5d (diff) | |
staging: rtl8188eu: rtw_mlme_ext: Clean up tests if NULL returned on failure
Some functions like kzalloc return NULL on failure.
When NULL represents failure, !x is commonly used.
This was done using Coccinelle:
@@
expression *e;
identifier l1;
@@
e = \(kmalloc\|kzalloc\|kcalloc\|devm_kzalloc\)(...);
...
- e == NULL
+ !e
Signed-off-by: Bhaktipriya Shridhar <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions