[ALSA] fix a wrong lock
authorClemens Ladisch <clemens@ladisch.de>
Tue, 2 May 2006 13:33:25 +0000 (15:33 +0200)
committerJaroslav Kysela <perex@suse.cz>
Thu, 22 Jun 2006 19:33:16 +0000 (21:33 +0200)
fix a typo in the info locking code

Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
sound/core/info.c

index 4188f76..c8eeaea 100644 (file)
@@ -267,7 +267,7 @@ static ssize_t snd_info_entry_write(struct file *file, const char __user *buffer
                buf = data->wbuffer;
                if (buf == NULL)
                        return -EIO;
-               mutex_unlock(&entry->access);
+               mutex_lock(&entry->access);
                if (pos + count >= buf->len) {
                        if (resize_info_buffer(buf, pos + count)) {
                                mutex_unlock(&entry->access);