|
From: Peter K. <pk...@us...> - 2001-10-03 17:19:11
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- hci_vendor.c 1.55 1.56=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Use copy_to_user() instead of copy_from_user() to copy data to user mode... The diff of the modified file(s): --- hci_vendor.c 2001/10/02 11:00:25 1.55 +++ hci_vendor.c 2001/10/03 17:19:10 1.56 @@ -743,7 +743,7 @@ return -E2BIG; } =20 - copy_from_user(data, response->data, length); + copy_to_user(data, response->data, length); =20 kfree(response); =20 |