Commit a3a9b33e authored by Nicolas Iooss's avatar Nicolas Iooss Committed by Greg Kroah-Hartman

ASoC: Intel: Atom: add a missing star in a memcpy call

commit 61ab0d40 upstream.

In sst_prepare_and_post_msg(), when a response is received in "block",
the following code gets executed:

    *data = kzalloc(block->size, GFP_KERNEL);
    memcpy(data, (void *) block->data, block->size);

The memcpy() call overwrites the content of the *data pointer instead of
filling the newly-allocated memory (which pointer is hold by *data).
Fix this by merging kzalloc+memcpy into a single kmemdup() call.

Thanks Joe Perches for suggesting using kmemdup()

Fixes: 60dc8dba ("ASoC: Intel: sst: Add some helper functions")
Signed-off-by: default avatarNicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 85e27fe8
...@@ -279,17 +279,15 @@ int sst_prepare_and_post_msg(struct intel_sst_drv *sst, ...@@ -279,17 +279,15 @@ int sst_prepare_and_post_msg(struct intel_sst_drv *sst,
if (response) { if (response) {
ret = sst_wait_timeout(sst, block); ret = sst_wait_timeout(sst, block);
if (ret < 0) { if (ret < 0)
goto out; goto out;
} else if(block->data) {
if (!data) if (data && block->data) {
goto out; *data = kmemdup(block->data, block->size, GFP_KERNEL);
*data = kzalloc(block->size, GFP_KERNEL); if (!*data) {
if (!(*data)) {
ret = -ENOMEM; ret = -ENOMEM;
goto out; goto out;
} else }
memcpy(data, (void *) block->data, block->size);
} }
} }
out: out:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment