mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-03-04 14:06:13 +08:00
Cygwin: clipboard: Fix a bug in read().
- Fix a bug in fhandler_dev_clipboard::read() that the second read fails with 'Bad address'. Addresses: https://cygwin.com/pipermail/cygwin/2021-December/250141.html
This commit is contained in:
parent
c9c5c9e147
commit
2d95c753da
@ -229,7 +229,7 @@ fhandler_dev_clipboard::read (void *ptr, size_t& len)
|
||||
if (pos < (off_t) clipbuf->cb_size)
|
||||
{
|
||||
ret = (len > (clipbuf->cb_size - pos)) ? clipbuf->cb_size - pos : len;
|
||||
memcpy (ptr, &clipbuf[1] + pos , ret);
|
||||
memcpy (ptr, (char *) (clipbuf + 1) + pos, ret);
|
||||
pos += ret;
|
||||
}
|
||||
}
|
||||
|
6
winsup/cygwin/release/3.3.4
Normal file
6
winsup/cygwin/release/3.3.4
Normal file
@ -0,0 +1,6 @@
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- Fix a bug in fhandler_dev_clipboard::read() that the second read
|
||||
fails with 'Bad address'.
|
||||
Addresses: https://cygwin.com/pipermail/cygwin/2021-December/250141.html
|
Loading…
x
Reference in New Issue
Block a user