Browse Source

ray_cs: Fix copy_from_user handling

I've not touched the other stuff here but the word "locking" comes to mind.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Cc: stable@kernel.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Alan Cox 15 years ago
parent
commit
575c9ed779
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/wireless/ray_cs.c

+ 1 - 1
drivers/net/wireless/ray_cs.c

@@ -2879,7 +2879,7 @@ static int write_essid(struct file *file, const char __user *buffer,
 		       unsigned long count, void *data)
 {
 	static char proc_essid[33];
-	int len = count;
+	unsigned int len = count;
 
 	if (len > 32)
 		len = 32;