diff options
author | Johan Hedberg <[email protected]> | 2014-07-21 10:50:06 +0300 |
---|---|---|
committer | Marcel Holtmann <[email protected]> | 2014-07-21 12:59:38 +0200 |
commit | 27f70f3e628c82362def60eb0af79d2129a51da2 (patch) | |
tree | 30789593d0d8af060492f8dc2a1994f4b41032bb /fs/jbd2/commit.c | |
parent | 0a961a440d693f0f74d3185728b13b8a11fc5860 (diff) |
Bluetooth: Prefer sizeof(*ptr) when allocating memory
It's safer practice to use sizeof(*ptr) instead of sizeof(ptr_type) when
allocating memory in case the type changes. This also fixes the
following style of warnings from static analyzers:
CHECK: Prefer kzalloc(sizeof(*ie)...) over kzalloc(sizeof(struct inquiry_entry)...)
+ ie = kzalloc(sizeof(struct inquiry_entry), GFP_KERNEL);
Signed-off-by: Johan Hedberg <[email protected]>
Signed-off-by: Marcel Holtmann <[email protected]>
Diffstat (limited to 'fs/jbd2/commit.c')
0 files changed, 0 insertions, 0 deletions