diff options
Diffstat (limited to 'sound/oss/dmasound/tas_common.c')
-rw-r--r-- | sound/oss/dmasound/tas_common.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/oss/dmasound/tas_common.c b/sound/oss/dmasound/tas_common.c index 882ae98a41b1..665e85b5562b 100644 --- a/sound/oss/dmasound/tas_common.c +++ b/sound/oss/dmasound/tas_common.c | |||
@@ -135,10 +135,9 @@ tas_detect_client(struct i2c_adapter *adapter, int address) | |||
135 | return -ENODEV; | 135 | return -ENODEV; |
136 | } | 136 | } |
137 | 137 | ||
138 | new_client = kmalloc(sizeof(*new_client), GFP_KERNEL); | 138 | new_client = kzalloc(sizeof(*new_client), GFP_KERNEL); |
139 | if (!new_client) | 139 | if (!new_client) |
140 | return -ENOMEM; | 140 | return -ENOMEM; |
141 | memset(new_client, 0, sizeof(*new_client)); | ||
142 | 141 | ||
143 | new_client->addr = address; | 142 | new_client->addr = address; |
144 | new_client->adapter = adapter; | 143 | new_client->adapter = adapter; |